Forum Activity for @michael

michael
@michael
09/19/16 01:49:06AM
7,832 posts

jrCore_load_url error


Using Jamroom

Appears to be your site trying to get an update from the MARKETPLACE and attempting to contact the marketplace module delivery system here on jamroom.net but something in between your server and ours is blocking the access.

Your server is continuing to try to access for as long as it is allowed to wait. It waits, it waits, it waits, then it gives up after 6 minutes.

Guessing your server may not allow curl or other??? check the System Check tool at
ACP -> MODULES -> CORE -> SYSTEM CORE -> TOOLS -> SYSTEM CHECK

--edit--
actually code 200 is OK so it may be that you have a slow connection from your server where its taking more than 6 minutes to download the core perhaps.
updated by @michael: 09/19/16 01:50:45AM
michael
@michael
09/19/16 01:26:58AM
7,832 posts

Nervous about re-sizing images


Using Jamroom

upgrading or downgrading a server is easy, just click "Change Server Plan" button from here:
https://www.jamroom.net/lesrinchen/hosting/server_tools/253

Our plans are pro-rated, so you'll only be charged for the length of time you use the larger server, not the whole month.
michael
@michael
09/19/16 12:14:40AM
7,832 posts

Recurring errors in Activity Log related to JrGallery


Using Jamroom

You didn't really need to locate it, it would have gone away as those timeline entries got further and further down the list as the new entries come to the top.

Nice to get rid of them though, gives peace of mind. Well done.
michael
@michael
09/18/16 11:39:02PM
7,832 posts

jrSeamless_list returned array is excluding quotas


Jamroom Developers

Sounds like a job better suited for your own custom smarty function:

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

The jrForums data on its own in a {jrCore_list} call will return not only the initial title post, but all the replies to that post too, same with jrGroupDiscuss, but blogs will each have their own post. So thats at least an additional 2 group by clauses that would need to be passed to jrSeamless. The single request, if it could be written, would be very difficult to get right.

Better to build your own smarty function, get the parts your after in parts, then merge them together. Use 3 individual searches.
michael
@michael
09/18/16 11:30:40PM
7,832 posts

OneAll SignUp - removal


Design and Skin Customization

Easiest way is via CSS:
#social_login #provider_twitter{
  display: none;
}

The other way is by altering the code generated by the {jrOneAll_embed_code} function on the login/signup screens.

The providers are stored in the:
$_conf['jrOneAll_social_networks']
variable, so you'd need to remove twitter from that list either by "Events and Listeners" or via the Template Injection module.

Docs: "Template Injection"
https://www.jamroom.net/the-jamroom-network/documentation/modules/1629/template-injection

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1011/events-and-listeners
michael
@michael
09/18/16 11:22:10PM
7,832 posts

Purge Old Notes


Using Jamroom

Pretty certain you're talking about the "Private Notes" (jrPrivateNote) module. For that module there is no prune function.

It would be easy enough to automate it though with Events and Listeners firing off of the 'daily_maintenance' function.

Docs: "Daily Maintenance"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/2979/daily-maintenance

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/development/1011/events-and-listeners

Just get the timestamp for today, search for private notes that are older than that X days, then send $_POST their ids to the view_jrPrivateNote_delete() function in the jrPrivateNote module.
michael
@michael
09/18/16 11:14:48PM
7,832 posts

Latest Comments - HTML Markup Displayed


Using Jamroom

Not enough info to setup to see it happening. I'm reading "I have some custom templates. The templates have a quote option button. HTML markup is appearing when the button is used. How do I fix it?"

Need more info.
updated by @michael: 09/18/16 11:15:00PM
michael
@michael
09/18/16 11:12:38PM
7,832 posts

OneAll System Feed


Design and Skin Customization

Please include setup instructions along with your question. Its unclear what the subject is. Im sure if I went searching I could probably locate something to fit the description, but to save me time and incorrect guesses.........

Thanks :)
michael
@michael
09/18/16 11:08:44PM
7,832 posts

Recurring errors in Activity Log related to JrGallery


Using Jamroom

The issue is this url:
http://stitchingbuddhas.com/testlisa

On that page the activity timeline is showing an entry that reads "5 days ago TestLisa" gallery was created, but it didn't have a gallery_title_url, so now when that activity action is show, it tries to get some of the images from that gallery to show on the timeline.

It fails because there is no gallery_title_url. When it searches for and fails to find any images because there was no gallery_title_url the system thinks you this is something you want to know about, so logs it to the activity log.

Its not a system stopping issue, but if you wanted to get rid of it delete that timeline entry.
michael
@michael
09/18/16 09:17:37PM
7,832 posts

Recurring errors in Activity Log related to JrGallery


Using Jamroom

The errors seam to be as a result of a datastore request to get something, then the gallery_title_url not provided.

I will go try to recreate it here. Once I understand how its being triggered I can tell you what needs to be done or fix it if its a bug.

What the error is saying is "You've told me to go get something from the datastore, but forgotten to tell me what to get".

Suspect its probably related to the "Group by Gallery" setting, but will confirm once I know more.

Thanks for the detailed report of the issue, makes things easier for me :)
  348