Forum Activity for @michael

michael
@michael
01/01/19 12:52:41PM
7,821 posts

Error 500 - No Access


Using Jamroom

upload the /modules directory over top of whatever is there now.

When jamroom updates via the marketplace it takes whatever is at
/modules/jrCore

and moves it to
/modules/jrCore-version-6.?.?

Then adds a symlink to point to that location.

If you upload the /modules you will overwrite the symlink with a new folder which will be symlinked to again when you update via the ACP marketplace system.

All your data is in the database and safe.
michael
@michael
01/01/19 01:45:33AM
7,821 posts

Error 500 - No Access


Using Jamroom

You can download the core files from here:
https://www.jamroom.net/products

the "DOWNLOAD OPEN SOURCE" button.
michael
@michael
12/30/18 05:50:03PM
7,821 posts

Error 500 - No Access


Using Jamroom

michaelcawood:
Thanks Paul. But I just got this error:
Fatal error: require_once(): Failed opening required '/home/micha316/public_html/animatedfilmmakers/devilsangelsanddating/modules/jrCore/include.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/micha316/public_html/animatedfilmmakers/devilsangelsanddating/repair.php on line 57
That is saying that the jrCore module is not installed correctly. There should be an include.php file in the jrCore/include.php location. If there is not the system can't run.

Try re-uploading all the files to the server.
michael
@michael
12/30/18 11:33:37AM
7,821 posts

Make Custom Module Pages Searchable


Jamroom Developers

if it was me wanting this, I would put the data you wanted made searchable into the database.

'yourmodule_pagetext'

Then in the pages .tpl file I would retrieve it and output it to the page:
{$yourmodule_pagetext}

Just like the jrPage module does now.
michael
@michael
12/28/18 06:58:56PM
7,821 posts

Make Custom Module Pages Searchable


Jamroom Developers

when you have a datastore it will have a prefix. like audio is 'audio_' and blog is 'blog_'. You can then add these to the search modules extra search fields. so 'audio_lyrics' 'blog_text' and the saved info will be searchable.
michael
@michael
12/27/18 01:48:31PM
7,821 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,821 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,821 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,821 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,821 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']; }
  99