Forum Activity for @michael

michael
@michael
12/27/18 01:48:31PM
7,816 posts

Is there plans for a Captcha module?


Using Jamroom

There are no current plans for a captcha module. We've had captcha modules in the past and changed them to the current systems which seem to be holding up well from all the angles we know about.

If they can get around the current systems then they can most likely get around a captcha system too.
michael
@michael
12/23/18 04:35:08PM
7,816 posts

Using TinyMce editor to upload media


Using Jamroom

There is no upload limit in this location. The only limit is that it must be an image. Even a RIDICULOUSLY HUGE image is still going to be less than 50Mb.

Some ridiculously huge images samples can be found here if you need to test:
https://www.effigis.com/en/solutions/satellite-images/satellite-image-samples/
michael
@michael
12/21/18 08:49:40PM
7,816 posts

switching from highly customized ningja to ninja and old shops to new


Using Jamroom

Nothing that I know of in a way of an advert blocking script. Other than things you add to your browser like uBlock.

MAYbe the "Flag Item" module
https://www.jamroom.net/the-jamroom-network/networkmarket/622/flag-item

so it can be reviewed.
michael
@michael
12/21/18 08:43:02PM
7,816 posts

jrCore_is_mobile_device() in module listener


Jamroom Developers

That location is not smarty.

You'd be better to have 2 functions.

in php
function myModule_some_function(){
 do stuff
}

and the smarty one
function smarty_function_myModule_do_something($params, $smarty)
{ // call the other php function here myModule_some_function(); }
michael
@michael
12/20/18 01:45:45AM
7,816 posts

jrCore_is_mobile_device() in module listener


Jamroom Developers

its in misc.php in the jrCore module. To use it in your function
function myCustomModule_imageDisplay_listener($_data, $_user, $_conf, $_args, $event)
{ // I need to inject this code if the image is being displayed on a mobile device if(jrCore_is_mobile_device()){ mobile only stuff goes here.... } $_rs = array( 'src' => "<amp-img src=\"{$url}\"" . $wid . $hgt . $attrs . ' layout="responsive">' ); return $_data; // listeners MUST return $_data or you'll break the system. $_rs['src']; }
michael
@michael
12/18/18 01:04:56AM
7,816 posts

Can't Install Genosis


Genosis

cloudflare is likely the cause of your issues. Jamroom has its own caching mechanisms. Im not totally familiar with cloudflare but believe its a distributed caching system.

There have been reports of other issues in these forums where disabling cloudflare has been the solution.

May also pay to run the integrity check again and clear the caches:
ACP -> MODULES -> CORE -> SYSTEM CORE -> TOOLS -> INTEGRITY CHECK
ACP -> MODULES -> CORE -> SYSTEM CORE -> TOOLS -> RESET CACHE
michael
@michael
12/15/18 07:22:05PM
7,816 posts

Can't Install Genosis


Genosis

novis97:...I think the reference given is too general
too general?

The guide to setting up a server is very detailed.
michael
@michael
12/15/18 12:29:25AM
7,816 posts

Query Error: Table 'xxx.jr_jrsearch_fulltext_jrgallery' doesn't exist


Using Jamroom

I cant read the script, but if that is your login panel and you cant get into the ACP to run the integrity check, you can run it via this method without logging in:
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#if-you-cannot-get-in-to-the-acp
michael
@michael
12/15/18 12:26:20AM
7,816 posts

Can't Install Genosis


Genosis

This is our server setup guide:
https://www.jamroom.net/brian/documentation/guides

The simplest setup is to use our hosting:
https://www.jamroom.net/hosting

The difficulties you are having are all coming from the limitations or configuration of your server.
michael
@michael
12/14/18 05:10:29AM
7,816 posts

Can't Install Genosis


Genosis

* Plugin 'InnoDB' is disabled.

That will be an issue, most of the tables are innodb. See if you can get your host to enable it.
  99