Forum Activity for @michael

michael
@michael
09/19/16 05:07:10PM
7,826 posts

how to set [s] bbcode for "strikethrough" site-wide?


Design and Skin Customization

The strikethrough bbcode isnt in our system currently. We'll get it added in to the next core release.

@ultrajam's solution will get the strikethrough button to the editor though and will work in any location that the editor exists.

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

ACP -> MODULES -> CORE -> SYSTEM CORE -> TEMPLATES -> form_editor.tpl -> MODIFY
michael
@michael
09/19/16 03:50:30PM
7,826 posts

support tickets, site owners able to click to mark solved / resolved


Suggestions

It will be there in an upcoming release.

Thanks.
michael
@michael
09/19/16 05:48:36AM
7,826 posts

Latest Comments - HTML Markup Displayed


Using Jamroom

got a URL? I'm not understanding how to see the issue. I'll look in projam maybe I can understand.
michael
@michael
09/19/16 04:52:40AM
7,826 posts

database cleanup


Installation and Configuration

phpmyadmin or adminer from the
ACP -> MODULES -> DEVELOPER -> DEVELOPER TOOLS -> TOOLS -> DATABASE ADMIN

If you just delete a module via FTP rather than uninstalling it then deleting it from the ACP then there may be settings left over, but they shouldn't do any harm, and probably wont take up much space.

Your call.
michael
@michael
09/19/16 01:49:06AM
7,826 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,826 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,826 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,826 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,826 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,826 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.
  347