Forum Activity for @paul

paul
@paul
07/22/21 02:54:22PM
4,326 posts

profile_sidebar.tpl - Headings Question


Design and Skin Customization

What I would try is instead of outputting the results of the jrProfile_stats call directly, assign it to a variable. You can then test the length of the variable and then show it if it has content. So the code might be something like -

{if isset($_conf.xxComplete_profile_stats) && $_conf.xxComplete_profile_stats == 'on'}
    {capture name="template" assign="stats_tpl"}
    {literal}
        {foreach $_stats as $title => $_stat}
            {jrCore_module_url module=$_stat.module assign="murl"}
            <div class="stat_entry_box" onclick="window.location='{$jamroom_url}/{$profile_url}/{$murl}'">
                {$title}: {$_stat.count|default:0}
            </div>
        {/foreach}
    {/literal}
    {/capture}
    {jrProfile_stats profile_id=$_profile_id template=$stats_tpl assign="xxxx"}
    {if strlen($xxxx) > 0}
         <div class="block">
              <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="39" default="stats"}</h3>
               <div class="block_content mt10">
                    <div style="padding-top:8px">
                          {$xxxx}
                     </div>
                 </div>
        </div>
    {/if}
{/if}

Note that we are assigning the stats output to variable $xxxx then test the length of that variable. If it has content we then output the variable directly.
You may need to experiment with the strlen condition as I'm not sure what its threshold may be.

Hope that makes sense.
paul
@paul
07/14/21 10:41:07AM
4,326 posts

error on youtube upload page


Installation and Configuration

There are two issues here -

Quote: I am guessing you mean i should change the 'max items' to a value less than 50

Not the 'Max Items' in the module quota set up, I'm referring to the 'Items per page' drop-down at the bottom of the search page.

Quote: The request cannot be completed because you have exceeded your quota

This is coming from the YouTube API. YouTube may be imposing hard limits on the number of accesses you make on them per day. Alternatively, I googled this message and some people say they have fixed it by by requesting a new API Key from the app control panel. Maybe try that then paste the new key into the Jamroom Module's config settings.
hth
paul
@paul
07/14/21 09:19:34AM
4,326 posts

error on youtube upload page


Installation and Configuration

Quote: Max results for YouTube Search is 50

This is actually hard coded within the YouTube module and is in conflict with the generic pager code used at the bottom of the page which allows options up to 100. In the short term, set that to 50 or less until we get the YouTube module fixed up and the new version released.

Quote: The request cannot be completed because you have exceeded your quota

Where are you seeing this message? It might be something coming from the YouTube API.
paul
@paul
07/13/21 12:05:48AM
4,326 posts

selling tickets for viewing a video


Using Jamroom

You could sell a subscription to a quota plan that allowed users to view that video(s). You could then only allow that video to be viewed between certain times by adding date/time fields to the video create/update forms using the Form Designer, then a bit of template work to check on those times.
Otherwise, if you want it to work in a more specific way, you might need to develop a custom module.
hth
paul
@paul
07/08/21 04:19:49AM
4,326 posts

Problems with images


Using Jamroom

Send your admin login to support[at]jamroom[dot]net and we'll take a look to see what the problem might be.
Thanks
paul
@paul
07/08/21 02:10:47AM
4,326 posts

Problems with images


Using Jamroom

Do a System Check (ACP=>Core=>Tools) to see if there are any issues reports, particularly with the 'binaries'.
Any errors in the logs?
Also check the queue (Dashboard=>Queue Viewer) to see if any conversion processes are stuck.
Hope that helps
paul
@paul
07/07/21 06:19:15AM
4,326 posts

invalid mailbox id - not found


Design and Skin Customization

Get the latest Ticket module from the Marketplace. This issue has been fixed.
Thanks
paul
@paul
06/18/21 04:44:13AM
4,326 posts

invalid mailbox id - not found


Design and Skin Customization

It looks like you've deleted the initial (default) mailbox and another needs to be set as the default. Let me know which one (see screen shot attached) and I'll patch the database to fix this.
In the meantime we'll fix up up the module so that this will not be an issue going forward.
Thanks
Screenshot 2021-06-18 at 10.48.19.png Screenshot 2021-06-18 at 10.48.19.png - 59KB
paul
@paul
06/18/21 02:46:54AM
4,326 posts

invalid mailbox id - not found


Design and Skin Customization

This might be a bug in the Ticket module. Checking it out...
  9