Forum Activity for @michael

michael
@michael
10/28/16 07:25:24PM
7,826 posts

possible jr6 bug


Installation and Configuration

Don't really want to debug a beta version for issues that may have already been fixed. If there is a way for me to reproduce it that would be better.

If the issue still exists on your server after JR6 is out of beta we can think about logging in to debug the cause.
michael
@michael
10/28/16 07:21:43PM
7,826 posts

possible jr6 bug


Installation and Configuration

nope, unable to make it fail with your images. Got some steps to make it fail?

--edit--
site builder worked too.
updated by @michael: 10/28/16 07:23:54PM
michael
@michael
10/28/16 07:07:15PM
7,826 posts

possible jr6 bug


Installation and Configuration

Suspect this structure causes the issue:
DSCN3419 (1).JPG.jpg

Will test here with your images. Just upload them to a blog post via Upload tab in the embedded editor right?
michael
@michael
10/28/16 06:42:46PM
7,826 posts

possible jr6 bug


Installation and Configuration

The code that handles that section is only updating the 'upimg_title_url' so if its failing its because an appropriate name can not be found for whatever that file is called.

What are the names of the files you are using?

#$%^$#@!@.jpg
Will fail.
michael
@michael
10/28/16 06:29:45PM
7,826 posts

how to keep "Now following" out of "latest activity" feed on main page


Ning To Jamroom

Copy+pasting code from a forum comes with issues. Its better to construct it yourself on your site. Strumelias code may work for her site, but it may-not work for yours joanna.

Things in strumelias code that exist on her site that may cause it not to work on yours:
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} ..........
For strumelias site the language for her skin #20 is Latest, but if you put that into your site and your language file wasnt exactly the same as hers you will get YOUR #20 which could be "biscuts" or "Enter your Name" or anything else.

The code that is doing the heavy lifting is {jrCore_list}

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

and on strumelias site its
{jrCore_list module="jrAction" search1="action_module != jrFollower" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=60 page=$_post.p}
which is requesting the file index_activity.tpl which exist in the currently active skin. If your skin does not have that file, you will get an error.

A safer way to go is to start with a small query then keep adding to it until you get what you want:
 {jrCore_list module="jrAction"}
view the page, see how it looks, then adjust
 {jrCore_list module="jrAction" search1="action_module != jrFollower" }
view the page, see how it looks, then adjust
 {jrCore_list module="jrAction" search1="action_module != jrFollower" order_by="_item_id numerical_desc"}
.......
updated by @michael: 10/28/16 06:30:42PM
michael
@michael
10/28/16 06:15:59PM
7,826 posts

opening a tab in a new window


Using Jamroom

try:
window.open('http://www.google.com');return false;
  323