Forum Activity for @douglas

douglas
@douglas
05/01/18 05:45:11AM
2,812 posts

JR sites going down...


Using Jamroom

andrusito:
ok, if the server were the problem, why is there another JR site running without issues?

Have you tried uninstalling the site with issues and re-installing it?

Another issue might be that you are running out of RAM or Disk Space or possibly both?

You might also try using the repair.php to see if that will fix it.

https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#if-you-cannot-get-in-to-the-acp

Hope this helps!
douglas
@douglas
04/28/18 07:29:33AM
2,812 posts

Modules not working correctly at System tools / System Check


Installation and Configuration

MusicAndBars:
Good morning again...

I reloaded again SystemTools and everything is OK!!!

Thank you very much.

Glad its working for you. :)
douglas
@douglas
04/27/18 06:30:07AM
2,812 posts

Modules not working correctly at System tools / System Check


Installation and Configuration

These:

Quote:
convert executable fail modules/jrSystemTools/tools/convert is not working correctly
epeg executable fail modules/jrSystemTools/tools/epeg is not working correctly
ffmpeg executable fail modules/jrSystemTools/tools/ffmpeg is not working correctly
id3v2 executable fail modules/jrSystemTools/tools/id3v2 is not working correctly
jpegoptim executable fail modules/jrSystemTools/tools/jpegoptim is not working correctly
sox executable fail modules/jrSystemTools/tools/sox is not working correctly
wget executable fail modules/jrSystemTools/tools/wget is not working correctly

are all binary files and should have a CHMOD of 755, you may need to contact your hosting provider and make sure you are allowed to execute binary files on your server.

Hope this helps!
douglas
@douglas
04/27/18 05:25:36AM
2,812 posts

Modules not working correctly at System tools / System Check


Installation and Configuration

MusicAndBars:
Thanks Michael.

Just done all the steps but same result.

I also checked with my hosting company. They checked Jamroom requirements and the hosting is OK. They tried system() with wget and not errors found.


Do you have the System Tools module installed?

yoursite.com/marketplace/browse/module?search_string=jrSystemTools

Hope this helps!
douglas
@douglas
04/23/18 01:36:37AM
2,812 posts

Change Notifications To Private Notes?


Using Jamroom

Zachary Moonshine:
No i better not alter the css to make the menu disappear this is perfect now the way it is but i do have one question @douglas about the number of unread notes it only refreshes when you log out and back in, is it possible to make it refresh everytime the page is refreshed?

You could reset your cache or wait for the cache timer to run out.
ACP > Core > System Core > General > Cache Seconds

Other than that, there isn't anything that will do what you want that I'm aware of.

Hope this helps!
douglas
@douglas
04/19/18 08:17:52AM
2,812 posts

JR sites going down...


Using Jamroom

Hello,

A 504 error is a server error.

Quote:
"HTTP Error 504 - Gateway Timeout" Cause: One server did not receive a timely response from another server that it was accessing while attempting to load the web page or fill another request by the browser. This usually means that the other server is down or not working properly.

You'll need to contact your hosting provider so they can help you with this issue.

Hope this helps!
douglas
@douglas
04/18/18 06:49:38AM
2,812 posts

Change Notifications To Private Notes?


Using Jamroom

Zachary Moonshine:
Cool. Now I just need to know where exactly to past this code?

If you want it to show on every page, paste it somewhere in your header.tpl.

Hope this helps!
douglas
@douglas
04/18/18 04:13:15AM
2,812 posts

Change Notifications To Private Notes?


Using Jamroom

Zachary Moonshine"]
Yes I remember when we did that my old jr site had that as well and that is awesome but I keep thinking if we can put it there why not put it at the top so its seen no matter what page a user is on ya know.

No reason you can't do this for your skin.

MediaPro has this already, should look something like this:

{if isset($_user.user_jrPrivateNote_unread_count) && $_user.user_jrPrivateNote_unread_count > 0}
    <a href="{$jamroom_url}/note/notes">In Box</a> ({$_user.user_jrPrivateNote_unread_count})
{else}
    <a href="{$jamroom_url}/note/notes" target="_top">In Box (0)</a>
{/if}

Hope this helps!
douglas
@douglas
04/17/18 05:30:59AM
2,812 posts

Flashback Index Page Stats


Installation and Configuration

Hello,

That setting is for the profile stats... it wasn't ever really setup for the home page stats so isn't really a bug or something that needs to be fixed.

If you want to hide home page stats, you'll have to modify the side.tpl and add the if statement Nate posted around the code for the stats.

Change this:

{* STATS *}
    <div class="title">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
    <div class="body_3 mb10">
        <div style="width:90%;display:table;margin:0 auto;">

            {capture name="template" assign="stats_tpl"}
            {literal}
                {foreach $_stats as $title => $_stat}
                <div style="display:table-row">
                    <div class="capital bold" style="display:table-cell">{$title}</div>
                    <div class="hilite" style="width:5%;display:table-cell;text-align:right;">{$_stat.count}</div>
                </div>
                {/foreach}
            {/literal}
            {/capture}

            {jrCore_stats template=$stats_tpl}

        </div>
    </div>

to this:

{* STATS *}
{if isset($_conf.jrFlashback_show_stats) && $_conf.jrFlashback_show_stats == 'on'}
    <div class="title">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
    <div class="body_3 mb10">
        <div style="width:90%;display:table;margin:0 auto;">

            {capture name="template" assign="stats_tpl"}
            {literal}
                {foreach $_stats as $title => $_stat}
                <div style="display:table-row">
                    <div class="capital bold" style="display:table-cell">{$title}</div>
                    <div class="hilite" style="width:5%;display:table-cell;text-align:right;">{$_stat.count}</div>
                </div>
                {/foreach}
            {/literal}
            {/capture}

            {jrCore_stats template=$stats_tpl}

        </div>
    </div>
{/if}

Hope this helps!
  46