Forum Activity for @douglas

douglas
@douglas
10/08/24 06:58:27AM
2,787 posts

Login Page not found after server migration.


Installation and Configuration

Sorry if I'm mistaken here, but that does not look like a Jamroom htaccess file. It looks more like this:

# Jamroom Apache .htaccess file
DirectoryIndex modules/jrCore/router.php

Options +FollowSymLinks -MultiViews -Indexes

# Headers
<IfModule mod_headers.c>
Header unset ETag
Header always set X-Content-Type-Options nosniff
Header always set X-XSS-Protection "1; mode=block"
FileETag None
</IfModule>

# Compress everything we can
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript text/javascript-x application/javascript
</IfModule>

# All requests through the router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^modules/.*\.tpl$ - [F,L,NC]
RewriteRule ^skins/.*\.tpl$ - [F,L,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [B,NC,L]
</IfModule>
douglas
@douglas
08/19/24 06:05:31AM
2,787 posts

search 3.0


Jamroom Developers

Yes, still in beta at this time.
douglas
@douglas
08/19/24 06:04:06AM
2,787 posts

ads in timeline feed


Design and Skin Customization

I believe this would require a custom module or modifications to the timeline module.

Sorry, it's not possible at this time.
douglas
@douglas
07/30/24 08:11:56AM
2,787 posts

Copying Text


Off Topic

I'm not seeing an issue on Chrome with selecting and copying text, however, I'm not logged in to the site either. Maybe that has something to do with it?
douglas
@douglas
07/23/24 04:56:42AM
2,787 posts

Updates NOT Updating


Using Jamroom

A 500 error is a server error not a Jamroom error.

Most likely the server is not set up to run Jamroom without issues.

Have you checked the server requirements for Jamroom?

https://www.jamroom.net/the-jamroom-network/documentation/getting-started/774/server-requirements

You can also go to your system check in the ACP to clarify everything is set up properly.
ACP > Core > System Core > Tools > System Check (/core/system_check)

Hope this helps!
douglas
@douglas
06/19/24 03:21:40PM
2,787 posts

songs are not streaming to full length


Using Jamroom

Do you have a link we can test?
douglas
@douglas
06/19/24 03:21:09PM
2,787 posts

Solo Artist Skin - How do I remove Latest Activity from Index Page


Design and Skin Customization

You can replace the entire content of your index.tpl file with this:

{assign var="selected" value="home"}
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">

        <div class="col3">

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="11" default="latest"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="13" default="Music"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrAudio" order_by="_created desc" template="index_list_songs.tpl" limit="1" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" require_image="audio_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/music">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="13" default="Music"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="11" default="latest"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="50" default="video"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrVideo" order_by="_created desc" template="index_list_videos.tpl" limit="1" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" require_image="video_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/{$_conf.jrSoloArtist_main_profile_url|replace:' ':'-'}/video">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="14" default="videos"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

            {* sitewide tag cloud*}
            {jrTags_cloud height="300" assign="tag_cloud"}
            {if strlen("{$tag_cloud}") > 0}
                <div class="block">
                    <div class="title mb10">
                        <h1>Tag Cloud</h1>
                    </div>
                    <div class="block_content">
                        <div class="p5 center top">
                            {$tag_cloud}
                        </div>
                    </div>
                </div>
            {/if}

        </div>

        <div class="col9 last">

            <div class="block">
                <div class="title mb10">
                    <h1>{jrCore_lang skin="jrSoloArtist" id="19" default="tour dates"}:</h1>
                </div>
                <div class="block_content">
                    {jrCore_list module="jrEvent" order_by="event_date numerical_desc" search1="_profile_id = `$_conf.jrSoloArtist_main_id`" template="index_list_events.tpl" limit="5" require_image="event_image"}
                    <div class="block_config normal capital">
                        <a href="{$jamroom_url}/{$_conf.jrSoloArtist_main_profile_url|replace:' ':'-'}/event">{jrCore_lang skin="jrSoloArtist" id="48" default="more"}&nbsp;{jrCore_lang skin="jrSoloArtist" id="19" default="tour dates"}&nbsp;&raquo;</a>
                    </div>
                </div>
            </div>

        </div>

    </div>

</div>

{jrCore_include template="footer.tpl"}

Hope this helps!
douglas
@douglas
06/19/24 07:03:25AM
2,787 posts

songs are not streaming to full length


Using Jamroom

Is there a price set for the song?
douglas
@douglas
06/14/24 06:00:31AM
2,787 posts

Solo Artist Skin - How do I remove Latest Activity from Index Page


Design and Skin Customization

That section supports three different types of content and is controlled via the skin settings > main > index content.

It will either show the artists blog, comments, or timeline.

If you want to remove it all together, you'll want to modify the index.tpl file.

Hope this helps!-
douglas
@douglas
06/03/24 05:01:18AM
2,787 posts

Wadduuuup!


Off Topic

Congrats Nate! I'm glad things are working out for you.
1