Forum Activity for @michael

michael
@michael
07/31/20 01:09:03AM
7,816 posts

APCu functions


Using Jamroom

Ask your hosting company if its installed correctly.
michael
@michael
07/28/20 07:03:49PM
7,816 posts

Facebook API advice gives me the heebie-jeebies


Using Jamroom

Nothing you need to worry about. It's saying: "the way we used to do things has changed and all that effort you put into getting it to work is probably broken now. Please re-do all the effort to match the new way of doing things. Vent your complaints and frustrations HERE where other developers can see them(we're probably going to ignore your comments though)"
michael
@michael
07/27/20 11:42:32PM
7,816 posts

403 Forbidden error


Using Jamroom

Its a server error, contact your new hosting company.
michael
@michael
07/21/20 11:32:26PM
7,816 posts

Lost Admin Password


Using Jamroom

ACP -> CORE -> MARKETPLACE -> GLOBAL CONFIG -> GENERAL SETTINGS -> MARKETPLACE VERSIONS

Change from "Keep All Versions" to "1 version"
keep.jpg keep.jpg - 768KB
michael
@michael
07/20/20 09:30:12PM
7,816 posts

Profile pictures on e-mail


Jamroom Developers

If you grab the URL of the image from the email that arrives in google, take that and paste it in to the url and it shows then its google blocking it. If it doesn't show then "why doesn't it show" is what to look for.
michael
@michael
07/16/20 10:28:28PM
7,816 posts

Which template files need modification to create a filter that can display all users or items for a given Quota


Design and Skin Customization

This is a good tool for finding out which templates construct a page "Template name in source"

Docs: "Developer tools -> Template Name in Source"
https://www.jamroom.net/the-jamroom-network/documentation/modules/932/developer-tools#template-name-in-source

In truth I don't use that very often though. What I do is grab a distinctive looking class from one of the elements on the page and run that through the search function in my IDE to locate the templates. If that fails then I'd use the above tool to figure out the template.

jrCore_list is the swiss army knife of getting anything from a datastore out to a template:

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

Jamroom has 2 types of data storage systems, a regular mysql 'table' and a 'datastore'.

A datastore is a KEY -> VALUE storage system that allows you not to have to define a table structure. Most modules use a datastore for their items.

--edit--
Careful though, if you're making alterations to jrAudioPro then if it gets updates and you upgrade all your adjustments will be lost.

What happens when a skin gets upgraded is the existing skin gets moved to a version directory jrAudio-version-1.2.3 and the new update gets put in its place.

In order to avoid that clone the skin to its own name so there will be no updates to over-write your changes.
updated by @michael: 07/16/20 10:30:53PM
michael
@michael
07/16/20 10:18:12PM
7,816 posts

Trying to help my member with his problem...


Using Jamroom

Thanks for giving us the exact wording: "You do not have permission to access this server"

That wording appears in 5 locations in jamroom, 4 of them are in the jrBanned module and 1 is in jrUser.

in jrUser its a check for banned 'bot's that are banned via that jrBanned module, so all those messages are related to something setup in
DASHBOARD -> ADMIN -> BANNED ITEMS

Take a look at what you've got setup there and see if anything could match the user your interested in.
michael
@michael
07/08/20 05:20:41AM
7,816 posts

My test email failed - how can I find the source of this problem?


Using Jamroom

Nice one. Thanks for the update, I was running out of locations to check.

Yes there are privacy concerns, and yes it is possible for any of the JR staff to check the logs and see what emails go through your account. But since email is inherently insecure these concerns should register as no higher than google reading your mail, your internet service provider reading your mail, mailgun reading your mail.

Mail is not secure just by its nature. You can setup encryption but that involves sending the recipient a key in advance that syncs with your email client. Nobody does that. most just know not to put credit card details or sensitive data in emails.

If you're concerned about login info, turn on the Two Factor Authenitcation module that sends you an email every time you login.
michael
@michael
07/05/20 11:42:04PM
7,816 posts

Install error


Genosis

This is the contents of the .htaccess file:
# 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
# Expires for CSS, JS and Images
<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2022 20:00:00 GMT"
</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>
  60