Forum Activity for @michael

michael
@michael
05/29/17 04:15:51PM
7,826 posts

Gallery Deleted Image Remains


Using Jamroom

The URL you sent has a placeholder image.

Example, here is my user image here on jamroom.net
https://www.jamroom.net/user/image/user_image/4/large/

Its found in the database, and in the filesystem so it shows.

However if I try to find an image for a user that does not exist, 9999999 then a placeholder image will show
https://www.jamroom.net/user/image/user_image/9999999/large/

Unless something has changed over-night, its the placeholder image that you are seeing.
michael
@michael
05/29/17 03:04:06AM
7,826 posts

Gallery Deleted Image Remains


Using Jamroom

Try resetting the image cache:
ACP -> CORE -> IMAGE CORE -> TOOLS -> RESET IMAGE CACHE
michael
@michael
05/28/17 12:09:50AM
7,826 posts

Is it possible for new applicants to complete a profile form before their account has been approved?


Using Jamroom

The way that occurs to me is to make a small module that checks that all of the form fields on the profile are filled in to your minimum requirements and if they are not, then it redirects them to their profile page.

Have it fire on when the user logs in and when the profile form is saved. They wont be able to get past their profile create screen until their form is filled in.
michael
@michael
05/26/17 05:32:44PM
7,826 posts

Soundcloud


Installation and Configuration

check there are no spaces in the beginning or end of your copying. If that fails, send me login details to your site as admin and I'll see if I can see any reason.
michael
@michael
05/26/17 05:30:58PM
7,826 posts

How to re-activate archived profile ?


Using Jamroom

Deleted things are found in the RECYCLE BIN.
DASHBOARD -> RECYCLE BIN
undelete.jpg undelete.jpg - 177KB
michael
@michael
05/25/17 11:24:13PM
7,826 posts

Soundcloud


Installation and Configuration

Does your Client-ID have a - in it?

Mine looks like this:
85c34a45h12y78p23n23o343w12r5220

if yours has a - in it it would fail. all the keys I've seen so far do not have a - or any characters other than letters and numbers.
michael
@michael
05/25/17 10:30:44PM
7,826 posts

Issue tracker resolution field strips out code


Using Jamroom

I had the same thing happen with a different module recently. Everything I set was pointing to it should be showing, it was showing for everyone I asked, but for me it was off. I'll do some testing around possible causes.
michael
@michael
05/25/17 04:35:39AM
7,826 posts

Page Quota Setup


Jamroom Developers

Your modules take control of a url at site level.

site.com/audio

Is controlled by the audio module. By default the page that shows in that location is:
/modules/jrAudio/index.tpl

You dont have to build a profile component for your module if you don't want to.

Sure, you can add a smarty function into your module that can check the access to any page via any criteria you like.

eg: into your modules include.php put
function smarty_function_xxYourModule_check_access($params, $smarty){.......

Then into any template you can call that function with {xxYourModule_check_access} and do whatever before showing the page.

Docs: "Defining your own smarty function"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1569/defining-your-own-smarty-function

You can then define any sub-pages you like
site.com/audio/elephants

will first look for a function in jrAudio/index.php called view_jrAudio_elephants() to fire on that URL.

If it doesn't find anything, then it will look for any modules that define a 'magic view' for 'elephants', if it doesn't find it it will search for other things before getting to 404 Not Found.

If you dont want to use the /modules/xxYourModule/templates/index.tpl to define what happens on your modules base url, you can define what happens there by a function in index.php called view_xxYourModule_default() which will fire if index.tpl doesnt exits.

You have a lot of choices for how you want it to flow.
michael
@michael
05/25/17 04:26:50AM
7,826 posts

Issue tracker resolution field strips out code


Using Jamroom

for me its in the profile menu. Do you see the same as this?
tracker_location.jpg tracker_location.jpg - 309KB
michael
@michael
05/25/17 04:18:56AM
7,826 posts

Disqus Module Acting Strange?


Using Jamroom

Yeah, your page has the wrong code for sure:
http://metaldevastationradio.com/thebeast/blog/596/did-chris-cornell-kill-himself-or-was-he-murdered
                                       
<div class="item">
    <div id="disqus_thread"></div>
    <script type="text/javascript">
        var disqus_shortname = 'metal-devastation-radio';
        var disqus_developer = 1;
                var disqus_identifier = 'jrDisqus_596';
                (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
        })();
    </script>
    <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
    <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
That var disqus_identifier = 'jrDisqus_596'; should be
var disqus_identifier = 'jrBlog_596';
for the blog page.

I'll setup a dev environment to test whats happening. If you've done nothing to the templates that's going to effect others.
  221