Forum Activity for @soaringeagle

soaringeagle
@soaringeagle
09/08/17 10:45:21PM
3,304 posts

uploaded video conversions still not right


Installation and Configuration

well i cant say for certain
support flash is absolutely checked
i did the update videos thing
380 some videois were in update queue now down to 63
most i checked had no player
so that might be 1 that didnt yet convert again..or maybe not its been many days queue latency 763,025 s
i have reset the workers a few times to get it going asgain
at this rate it will be 2 more days i guess till the queues done then ill know for sure
i still have 2 active workers despite the setting being set to 1 and low priority
soaringeagle
@soaringeagle
09/08/17 05:29:25PM
3,304 posts

cache performance issues


Installation and Configuration

ok thought it would pause them much like reset workerr
soaringeagle
@soaringeagle
09/08/17 03:00:24PM
3,304 posts

uploaded video conversions still not right


Installation and Configuration

michael:
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.

this
i dont think i ever had to put in code for a player before, not sure what code to use..or where

only template i found semi relasted is this profile_index_video.tpl
{* Template - controls the look of EACH entry in the Latest Videos List - modify BETWEEN the literal tags *}

{capture name="latest_videos" assign="v_tpl"}
{literal}

{if isset($_items)}
    {jrCore_module_url module="jrVideo" assign="vurl"}
    {jrCore_module_url module="jrVimeo" assign="uurl"}
    {jrCore_module_url module="jrYouTube" assign="yurl"}
    {foreach from=$_items item="item"}
        <div class="container">

            <div class="row">
                <div class="col2">
                    <div class="mb10" style="min-height:65px">
                        {if !isset($item.seamless_module_name) || $item.seamless_module_name == 'jrVideo'}
                        <a href="{$jamroom_url}/{$item.profile_url}/{$vurl}/{$item._item_id}/{$item.video_title_url}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="large" crop="auto" class="iloutline img_scale" alt=$item.video_title width=false height=false}</a>
                        {elseif $item.seamless_module_name == 'jrVimeo'}
                        <a href="{$jamroom_url}/{$item.profile_url}/{$uurl}/{$item._item_id}/{$item.vimeo_title_url}"><img src="{$item.vimeo_artwork_url}" alt="{$item.vimeo_title|jrCore_entity_string}" class="iloutline img_scale"></a>
                        {else}
                        <a href="{$jamroom_url}/{$item.profile_url}/{$yurl}/{$item._item_id}/{$item.youtube_title_url}"><img src="{$item.youtube_artwork_url}" alt="{$item.youtube_title|jrCore_entity_string}" class="iloutline img_scale"></a>
                        {/if}
                    </div>
                </div>
                <div class="col10 last">
                    <div class="p5-10">
                        {if !isset($item.seamless_module_name) || $item.seamless_module_name == 'jrVideo'}
                        <h3><a href="{$jamroom_url}/{$item.profile_url}/{$vurl}/{$item._item_id}/{$item.video_title_url}" title="{$item.video_title|jrCore_entity_string}">{$item.video_title|truncate:32}</a></h3>
                        <br><small>{$item._created|jrCore_format_time:false:"relative"} - {jrCore_lang skin=$_conf.jrCore_active_skin id="37" default="Comments"}: {$item.video_comment_count|default:0}</small>
                        {elseif $item.seamless_module_name == 'jrVimeo'}
                        <h3><a href="{$jamroom_url}/{$item.profile_url}/{$uurl}/{$item._item_id}/{$item.vimeo_title_url}" title="{$item.vimeo_title|jrCore_entity_string}">{$item.vimeo_title|truncate:32}</a></h3>
                        <br><small>{$item._created|jrCore_format_time:false:"relative"} - {jrCore_lang skin=$_conf.jrCore_active_skin id="37" default="Comments"}: {$item.vimeo_comment_count|default:0}</small>
                        {else}
                        <h3><a href="{$jamroom_url}/{$item.profile_url}/{$yurl}/{$item._item_id}/{$item.youtube_title_url}" title="{$item.youtube_title|jrCore_entity_string}">{$item.youtube_title|truncate:32}</a></h3>
                        <br><small>{$item._created|jrCore_format_time:false:"relative"} - {jrCore_lang skin=$_conf.jrCore_active_skin id="37" default="Comments"}: {$item.youtube_comment_count|default:0}</small>
                        {/if}
                    </div>
                </div>
            </div>

        </div>
    {/foreach}
{else}
    <div class="center p10">
        <h3>No Videos Submitted!</h3>
    </div>{/if}

{/literal}
{/capture}



{* Listing - this is the actual listing part that is inside the Latest Videos List *}

<div class="title">
    <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="23" default="Videos"}   <span class="view-all"><a href="{$jamroom_url}/{$profile_url}/{jrCore_module_url module="jrVideo"}">{jrCore_lang skin=$_conf.jrCore_active_skin id="30" default="All"}</a></span></h3>
</div>
<div class="block_content">
    <div class="item item-scroll" style="height:300px">
        {if jrCore_module_is_active('jrCombinedVideo')}
            {jrCombinedVideo_get_active_modules assign="mods"}
            {if strlen($mods) > 0}
                {jrSeamless_list modules=$mods order_by="_created desc" profile_id=$_profile_id limit=10 template=$v_tpl}
            {/if}
        {else}
            {jrCore_list module="jrVideo" order_by="_created desc" profile_id=$_profile_id limit=10 template=$v_tpl}
        {/if}
    </div>
</div>

ps prior to last update the ones that had converted worked fine
updated by @soaringeagle: 09/08/17 03:01:41PM
soaringeagle
@soaringeagle
09/08/17 02:52:15PM
3,304 posts

uploaded video conversions still not right


Installation and Configuration

shouldnt the player come from skin settings- global -player
soaringeagle
@soaringeagle
09/08/17 02:44:55PM
3,304 posts

cache performance issues


Installation and Configuration

hmm pausing queues does not pause active workers!
soaringeagle
@soaringeagle
09/08/17 02:42:57PM
3,304 posts

uploaded video conversions still not right


Installation and Configuration

they did maybe something changed i do need yto do a full redesign in ninja someday are all my ningja custum, css and templates compatable with ninja
isthere any way to save and import all the sb pages direct so i dont have to recreate
soaringeagle
@soaringeagle
09/07/17 05:32:48PM
3,304 posts

uploaded video conversions still not right


Installation and Configuration

the queue workers get stuck alot but even when they complte all i get is a video image no playable vidfeo ir video player
example
https://www.dreadlockssite.com/soaring-eagle/uploaded_video/364/disabled-glider-pilots-ridge-soaring
updated by @soaringeagle: 12/12/17 05:40:06AM
soaringeagle
@soaringeagle
09/07/17 03:44:24PM
3,304 posts

cache performance issues


Installation and Configuration

but wouldnt all thoise tables updating cache be a result of when you post you changfe the page contrent so its updating cache expires i know it only affects logged out users who view the page they get a cached copy
but do you see the logic in what i am saying
when the page is updated..as in new comment or post, the new cache expiriations are written for all the page files...right?
i think that is whats causing it to delay the posting while its updating all the cache expirations
soaringeagle
@soaringeagle
09/06/17 11:24:29AM
3,304 posts

cache performance issues


Installation and Configuration

after page refresh db processes were empty
i know my db performance test results arent good
problem seems to be with tuning it more the guy that reconfigured it must have done something weird to my.cnf cause edits in it dont seem to reflect in the mysqltuners next run it still says to make the changes i already made

but this only got like this after enabling full page cahe
chat sites db is pretty big
soaringeagle
@soaringeagle
09/05/17 11:13:42PM
3,304 posts

cache performance issues


Installation and Configuration

enabled full page cache
but now when i post..anything at all the spinner keeps spinning and mysql processlist shows
MariaDB [(none)]> SHOW PROCESSLIST;
+---------+--------------+-----------+--------------+---------+------+----------                                                                             +-------------------------------------------------------------------------------                                                                             -----------------------+----------+
| Id      | User         | Host      | db           | Command | Time | State                                                                                 | Info                                                                                                                                                                              | Progress |
+---------+--------------+-----------+--------------+---------+------+----------                                                                             +-------------------------------------------------------------------------------                                                                             -----------------------+----------+
| 1139415 | greentec_jam | localhost | greentec_jam | Query   |   89 | updating                                                                              | DELETE FROM jr_jrcore_cache WHERE (cache_item_id LIKE '%,85,%')                                                                                                                   |    0.000 |
| 1139432 | greentec_jam | localhost | greentec_jam | Query   |   22 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139433 | greentec_jam | localhost | greentec_jam | Query   |   16 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139444 | greentec_jam | localhost | greentec_jam | Query   |    5 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139447 | greentec_jam | localhost | greentec_jam | Query   |   49 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139450 | greentec_jam | localhost | greentec_jam | Query   |   49 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139456 | greentec_jam | localhost | greentec_jam | Query   |   39 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '31197d658d4b14d2b |    0.000 |
| 1139461 | greentec_jam | localhost | greentec_jam | Query   |   33 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '1070b93117c90eede |    0.000 |
| 1139462 | greentec_jam | localhost | greentec_jam | Query   |   31 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139463 | greentec_jam | localhost | greentec_jam | Query   |   30 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '1c3e4ccca32695f0f |    0.000 |
| 1139465 | greentec_jam | localhost | greentec_jam | Query   |   29 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139467 | greentec_jam | localhost | greentec_jam | Query   |   29 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139468 | greentec_jam | localhost | greentec_jam | Query   |   28 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139469 | greentec_jam | localhost | greentec_jam | Query   |   27 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '26338f17a054da759 |    0.000 |
| 1139472 | greentec_jam | localhost | greentec_jam | Query   |   26 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '638e799f8262b6f04 |    0.000 |
| 1139475 | greentec_jam | localhost | greentec_jam | Query   |   25 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139476 | greentec_jam | localhost | greentec_jam | Query   |   25 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139477 | greentec_jam | localhost | greentec_jam | Query   |   24 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139480 | greentec_jam | localhost | greentec_jam | Query   |   15 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139487 | greentec_jam | localhost | greentec_jam | Query   |   11 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '62f9dabb4705ddac4 |    0.000 |
| 1139488 | greentec_jam | localhost | greentec_jam | Query   |    9 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '56824e470ffbda06b |    0.000 |
| 1139491 | greentec_jam | localhost | greentec_jam | Query   |    9 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139494 | greentec_jam | localhost | greentec_jam | Query   |    7 | updating                                                                              | UPDATE jr_jrcore_cache SET cache_expires = (cache_expires + 30) WHERE cache_ke                                                                             y = '26338f17a054da759 |    0.000 |
| 1139495 | greentec_jam | localhost | greentec_jam | Query   |    5 | update                                                                                | INSERT INTO jr_jrcore_cache (cache_key,cache_expires,cache_module,cache_profil                                                                             e_id,cache_user_id,cac |    0.000 |
| 1139498 | greentec_jam | localhost | NULL         | Query   |    0 | init                                                                                  | SHOW PROCESSLIST                                                                                                                                                                  |    0.000 |
+---------+--------------+-----------+--------------+---------+------+----------                                                                             +-------------------------------------------------------------------------------                                                                             -----------------------+----------+
25 rows in set (0.00 sec)

MariaDB [(none)]>
i refresh the page and the post is there (but refresh is sloooow too)
it seems the db insert is held up by a whole lot of cache updating

this is all the full page caching right?

updated by @soaringeagle: 12/09/17 04:27:13PM
  55