Forum Activity for @michael

michael
@michael
06/27/16 07:30:04PM
7,832 posts

Welcome to the Alpha Team



IPO's don't happen to random people selling stuff from the trunk of their car, if we want an IPO, we need to work to moving in that direction.

Probably need someone who knows the steps of an IPO. Its an option i guess, but not sure I know anyone who can help us get there... :(

The activity timeline has that @mention prompter in it, other locations don't though.
michael
@michael
06/27/16 03:44:54PM
7,832 posts

What do you love about Jamroom 5 right now?


Off Topic

Cheers Curtis, We'll need to get some pointers from you as the features roll out. :)
michael
@michael
06/27/16 03:41:54PM
7,832 posts

Welcome to the Alpha Team



Welcome Jimmy :)
michael
@michael
06/26/16 09:51:54PM
7,832 posts

Documentation to ePUB or app


Suggestions

right now there is a 'Downloadable File' file type for the jrDocs module. If the purpose of the file attached to the doc is to download it, that will be enough i should imagine.

However if the purpose of the doc section is to play the audio file, then in order for it to be playable on all devices it needs to run through the same audio conversion system that the jrAudio file runs it through.

I wouldn't want to replicate that system in another module, so making the doc section in that module seams the most appropriate. But that then brings up the question: "If the jrAudio module exists, and can be embeded via the jrEmbed module into any text area, then whats the purpose of the audio section?"

Is it the jrEmbed interface that you're wanting maybe for the 'text' sections? Because they can embed an audio file right now with:
[jrEmbed module="jrAudio" id="1"]

Help me understand. Thanks.
michael
@michael
06/25/16 10:51:06PM
7,832 posts

90% Disk usage on new install


Installation and Configuration

'Disk Usage' section of the Dashboard gets its information from this function:
/modules/jrCore/lib/util.php (around line 2900 ish) jrCore_get_disk_usage()

Which in turn uses the PHP function disk_total_space()
http://php.net/manual/en/function.disk-total-space.php

and disk_free_space()
http://php.net/manual/en/function.diskfreespace.php

So if the numbers are wrong, you'll need to check why your server is reporting them wrongly.

See what they return when used outside of jamroom and see if you get the same results.
michael
@michael
06/24/16 05:07:31PM
7,832 posts

profile domains on plesk


Design and Skin Customization

(guess) your site use both www. and non-www versions? try turning just one on. looks like its redirecting, then getting redirected, then redirecting, up to 10 times.

follow the suggestion and turn on logLevel debug and see whats causing it.

https://duckduckgo.com/?q=Use+%27LogLevel+debug%27&ia=qa

^ search for it turned up many resources, not sure which one is right.
michael
@michael
06/24/16 04:06:30PM
7,832 posts

How to add a Search by date Range?


Using Jamroom

Thanks for making a separate thread, it makes it easier to help :) and for others to search for help.

The site wide search function searches each of the active modules for the term your interested in, It currently does not have this functionality. There might be a way to add it via a module, but its probably a bit complicated. ( I haven't built that module, so don't know the issues that might arise )

I'll add this as a suggestion for an extension to the jrSearch module and we can have a look at how hard it would be.

In the mean time, what you can do is create a search for any of the individual modules you're interested in, that can be done now.

Each module stores its time of creation and time of update along with the item, those fields are:
* _created
* _updated

They are stored as a timestamp that looks like this 12569537329
The {jrCore_list} template function is the one that is responsible for returning results, you can add search queries to it

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

using this timestamp converter, http://www.timestampconvert.com/ we can see that the dates you want convert to these values:
September 05, 2013 = 1378310690
November 12, 2013 = 1384185933

So if you wanted all the jrAudio items created between those dates, the list call would be:
{jrCore_list module="jrAudio" search1="_created > 1378310690" search2="_created < 1384185933"}

michael
@michael
06/24/16 03:49:22PM
7,832 posts

How to upload and search audio and video by date and location?


Using Jamroom

These are the docs you want to adjust how the time shows.

Docs: "{$variable|jrCore_format_time}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1539/variable-jrcore-format-time

"Which template do I modify?"

What you want is the Template Name In Source setting turned on, then look at the page, it will tell you which template to modify.

Docs: "Developer Tools : Template Name in Source"
https://www.jamroom.net/the-jamroom-network/documentation/modules/932/developer-tools#template-name-in-source
michael
@michael
06/24/16 03:44:35PM
7,832 posts

Is there a way to limit the privacy settings for members?


Using Jamroom

Strumelia:...maybe it doesn't actually reset their options back to public (the site default)...it just takes away their future ability to change their options by HIDING them......

This is correct. Unchecking the "Show Privacy Options" would make the privacy options not visible. It would not change anybodies privacy settings. The option still would be visible to the admin user. The admin user can still change that users privacy settings.
michael
@michael
06/24/16 03:37:54PM
7,832 posts

Users dont get the file they paid for


Using Jamroom

Log in to foxycart admin and go to the 'payment' tab, should be a "live servers" and "test servers"
https://admin.foxycart.com/admin.php?ThisAction=EditPaymentGateway
  381