Forum Activity for @paul

paul
@paul
12/30/18 09:27:29AM
4,335 posts

Error 500 - No Access


Using Jamroom

Not yet.
Have you tried running the repair script and manually clearing caches?

https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do

Scroll down to the "If you cannot get in to the ACP" section.
paul
@paul
12/30/18 09:11:00AM
4,335 posts

Error 500 - No Access


Using Jamroom

That .htaccess file is looking pretty old. What version of the Jamroom Core are you running?
This is the current one -
# Jamroom Apache .htaccess file
DirectoryIndex modules/jrCore/router.php

Options +FollowSymLinks
Options -MultiViews -Indexes

# Use ETags
<IfModule mod_headers.c>
Header unset ETag
FileETag None
# Expires for CSS, JS and Images
<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2020 20:00:00 GMT"
</FilesMatch>
<FilesMatch ".(eot|ttf|otf|woff)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</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 [NC,L]
</IfModule>
paul
@paul
12/30/18 01:41:18AM
4,335 posts

Can we get an option to 'pin' Group discussions ?


Using Jamroom

Here's a way to do this -

1) Use the Form Designer to add a 'discuss_pinned' checkbox field to group discussion create and update forms. Make it only visible to profile admins.

2) Edit the jrGroup item_detail.tpl template. About line 98 find this code -
{jrCore_list module="jrGroupDiscuss" search="discuss_group_id = `$item._item_id`" order_by="_updated desc" limit=10 template=$dtpl _group=$item}
Change it to -
{jrCore_list module="jrGroupDiscuss" search1="discuss_group_id = `$item._item_id`" search2="discuss_pinned = on" order_by="_updated desc" limit=10 template=$dtpl _group=$item}
{jrCore_list module="jrGroupDiscuss" search1="discuss_group_id = `$item._item_id`" search2="discuss_pinned != on" order_by="_updated desc" limit=10 template=$dtpl _group=$item}

3) Optionally indicate that the discussion is pinned by editing the 'captured' template code in the same template. Change line 78 -
<a href="{$jamroom_url}/{$_params._group.profile_url}/{$durl}/{$item._item_id}/{$item.discuss_title_url}"><h3>{$item.discuss_title}</h3></a>
to
<a href="{$jamroom_url}/{$_params._group.profile_url}/{$durl}/{$item._item_id}/{$item.discuss_title_url}"><h3>{$item.discuss_title} {if $item.discuss_pinned == 'on'}[Pinned]{/if}</h3></a>
Or use the same conditional test to indicate pinned discussions by another means.

hth
paul
@paul
12/29/18 10:53:50AM
4,335 posts

Error 500 - No Access


Using Jamroom

Sorry - I was assuming that this is a new Jamroom install in a new sub-folder. Are you saying that it has been working for years and has only been doing this for the past few weeks?
Notwithstanding that, the issue is still the same, so presumably either you or your host did something to change things. Making that Jamroom folder viewable should be straightforward and something your host can do for you.
Suggestion -
1) Temporarily add a file called index.html to the folder with the following content -
<html>
<head>
<title>Test Page</title>
</head>
<body>
<h1>Hello World!!</h1>
</body>
</html>
2) Temporarily rename the .htaccess file to saved.htaccess
3) Contact your host asking them to fix up the permissions for this folder. When you can access http://animatedfilmmakers.com/devilsangelsanddating and see 'Hello World!!' you know this is now working.
4) Delete the temporary index.html file and revert the saved.htaccess file to its original .htaccess
5) You should now see your Jamroom site.
hth
paul
@paul
12/29/18 10:19:42AM
4,335 posts

Error 500 - No Access


Using Jamroom

Hi - That file list looks ok. Note that Jamroom doesn't have an index.php or .html file in its roots folder, the .htaccess file handles the initial routing.
I'm getting a 403 error when accessing http://animatedfilmmakers.com/devilsangelsanddating - That is 'forbidden', so I'm guessing that this issue is down to folder permission and/or ownership problems so check that the folder is viewable by the public.
hth
paul
@paul
12/28/18 10:13:08AM
4,335 posts

New Module Releases


Announcements

Thanks Perrie - I'll take a look and let you know.
paul
@paul
12/28/18 12:24:58AM
4,335 posts

Is there plans for a Captcha module?


Using Jamroom

We get spammed a lot here at jamroom.net
These days its nearly always real people doing the spamming and there's little any automated process can do about that. Most will signup then spam immediately. Others are more cunning and leave it a few days before spamming.
Make sure you have the the Akismet module installed and configured, then just be diligent!!
paul
@paul
12/26/18 02:46:24PM
4,335 posts



Actually, have just looked at your site here - http://soundstreamerscom.jamroomhosting.com - and do not see the wording on the front page any more. I also see that the 'Welcome to .... ' wording. I also don't see the original blog in the blog listing - http://soundstreamerscom.jamroomhosting.com/blog - so presume you have now found and deleted it?
paul
@paul
12/26/18 02:24:10PM
4,335 posts



Is 'Back Room Beats' the profile name of the master admin - the first account you created?
Maybe send the URL of your site along with the master admin login username and password to support[at]jamroom[dot]net so that I can check it out and point you in the right direction.
Thanks
paul
@paul
12/26/18 12:52:07PM
4,335 posts



That screenshot is of your ACP. You get to the blog via your profile page. Click on the blue image icon top right to get there, then on the Blog link in the profile menu bar.

Might be worth you checking out our documentation on the way Jamroom works and how its structured - https://www.jamroom.net/the-jamroom-network/documentation/contents

The 'concepts' chapter is well worth a read :-) - https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2167/concepts-the-admin-user-needs-to-know

hth
  73