Forum Activity for @brian

brian
@brian
04/13/18 06:39:54AM
10,148 posts

Searching with AND operator


Using Jamroom

lornawebber:
We have the page jumper on our gallery, and one thing I noticed is that the first page of results initially shows as 1/n where n is 'total pages in the gallery' and not 'total pages of search results'. Moving forward to page 2 corrects this.

I've just gone to your site and don't see this - let me know the URL you are seeing this at.

Thanks!
brian
@brian
04/13/18 06:38:11AM
10,148 posts

Overriding a View Function


Jamroom Developers

TiG:
Tomorrow I will investigate the catch-all of view-results. That seems to be the only option left.

the view_results function comes at the very end - AFTER the view has been processed, so that is not going to help you. Instead you need to move further up the routing to the parse_url function - that way you can watch for the module and option and CHANGE then to your module if they match - i.e.

function xxCustom_parse_url_listener($_data, $_user, $_conf, $_args, $event)
{ if (isset($data['module']) && $_data['module'] == 'jrBlog' && isset($_data['option']) && $_data['option'] == 'update') { $_data['module'] = 'xxCustom'; $_data['option'] = 'update-blog'; } return $_data; }

The parse_url event is where Jamroom parses out the URL to see what needs to be run - so you can swap things around in there if you need to.
updated by @brian: 04/13/18 06:38:34AM
brian
@brian
04/12/18 02:42:03PM
10,148 posts

Searching with AND operator


Using Jamroom

This has been fixed in the latest Search module update - upgrade and let us know if that looks better.

Thanks!
brian
@brian
04/12/18 08:51:03AM
10,148 posts

RE: New Payments/Products etc Modules


Using Jamroom

emerge:
Is there a way to list the service without requiring payment up front so buyer and seller can introduce themselves and start negotiating aterwhich you can get paid in full or partially until the work is completed? Something aligned more around the sales process of pitch, negotiation and close.

No - the payments module is designed for selling things - i.e. eCommerce, not as a general business sales funnel module.

Sorry!
brian
@brian
04/10/18 02:22:42PM
10,148 posts

changes in configuration are not taking effect


Installation and Configuration

I test with a 1.4 Gig video file here and it works for me - but note that you really need to go 3 TIMES larger than the file. So in your case, a 600mb file needs roughly a 2048mb upload limit. After you make the changes in your php.ini file, you must restart your web server for the changes to take effect, then run an integrity check so JR sees the "new" settings, then reset caches so the new settings take effect.
brian
@brian
04/10/18 02:20:44PM
10,148 posts

Searching with AND operator


Using Jamroom

I'm not seeing any issues with AND here - for example we have one document that has phpstorm AND ubuntu AND jetbrains in it, but if they were all "OR"'d we have several more.

https://www.jamroom.net/search/results/all/1/4?search_string=phpstorm+AND+jetbrains+AND+ubuntu

Can you post the URL to a search that does not appear to be working?

Thanks!
brian
@brian
04/07/18 07:18:11AM
10,148 posts

Random Thoughts



Thanks Jimmy:

7) All Support tickets have a unique ID - you can see it in the subject line of all tickets that are sent out.

7a) I think the problem here is that we then need the user to know the ID number or name or whatever - it's easier to just cut and paste the URL which the media URL scanner will then turn into a nice link.

8) I always try to not make more settings/buttons unless there's a real need - in this case couldn't you just start off the ticket with "this isn't really a high priority ticket" - we do get that sometime.

9) I thought this already happened - I'll check it out.
brian
@brian
04/03/18 08:37:38AM
10,148 posts

Activity showing Invalid Modules


Installation and Configuration

yes - you can load/reload any module from the marketplace.

For the binaries that are showing red on your system check, you need to contact your hosting provider and make sure your account is allowed to run binaries via a system call in PHP.

Let me know if that helps.
brian
@brian
04/03/18 07:22:14AM
10,148 posts

Why are uploads limited to 2mb?


Using Jamroom

I have you updated to PHP 7 - run an integrity check and you should see much higher upload sizes. Let me know if that works.

Thanks!
brian
@brian
04/03/18 07:20:12AM
10,148 posts

Activity showing Invalid Modules


Installation and Configuration

Annush:
This time (6th) Site went off. Re-loaded with difficulty but the JrCore folder doesn't seem to open - it jumps to jrCore Release (please see video) Site came on but still problem with functions.

This is wrong - you should NOT be using FTP to manage the module directories on your install - you will break it.

The "jrCore" you see there is a SYMBOLIC LINK - not a directory - trying to "overwrite" that with the version directory will simply break your site.

Do not go into the modules or skins directory on your Jamroom install via FTP - there is no need to.
  61