Forum Activity for @michael

michael
@michael
01/23/19 08:27:57PM
7,839 posts

New Install, Error 500


Installation and Configuration

someone else said that the chrome browser will show 500 server error if it gets a blank white page. This is chrome lying to you. Could be an issue though. Check the link in FireFox to see if you also get a 500 Server Error to know that it actually is a server error.

If it turns out that its not a real server error, then try with a different un-altered skin. suggest jrElastic2

because in that case it could be an issue with a missing closing tag in the templates.
michael
@michael
01/22/19 07:49:52PM
7,839 posts

Signup verification by SMS


Suggestions

Do you know of any services that act as an inbetween for SMS? eg for mail we can use mailgun.com to programatically send and receive emails. Anything similar for SMS?
michael
@michael
01/19/19 06:11:32PM
7,839 posts

Video Poster Background Not Showing


Using Jamroom

Can you show me an example of the OUTPUT that that tag generates?

my guess is its either using an iframe if it uses an HTML player, or its using a flash player.
michael
@michael
01/16/19 01:15:04PM
7,839 posts

Video Poster Background Not Showing


Using Jamroom

Can you show me an example of the OUTPUT that that tag generates?

my guess is its either using an iframe if it uses an HTML player, or its using a flash player.
michael
@michael
01/16/19 01:12:29PM
7,839 posts

expanded stats dashboard upgrade


Suggestions

All that info is recorded I think. If you wanted to set it up for your skin the jrCore_list with a 'return_count'
.... return_count="true".....
included would get you counts of stuff:

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

Thanks for the suggestion.
michael
@michael
01/16/19 01:06:02PM
7,839 posts

Resetting Cache


Suggestions

You could run in developer mode. That turns the caches off.
ACP -> MODULES -> TOOLS -> DEVELOPER TOOLS -> GLOBAL CONFIG -> RUN IN DEVELOPER MODE
michael
@michael
01/15/19 07:51:12PM
7,839 posts

Modify the guestbook module or build a custom module?


Jamroom Developers

:thumbs-up:

Hit us with specific questions where you get stuck. Open a thread for each question, let us solve it and open another thread for the next problem.

Mammoth threads never get read and quickly get confusing. :)

Start by setting up the module structure with an include.php file, then try to turn your module on in the ACP.

Look at the other modules as a guide.

--edit--
ah, and turn on developer mode so you dont get caching issues
ACP -> TOOLS -> DEVELOPER TOOLS -> GLOBAL CONFIG -> RUN IN DEVELOPER MODE
updated by @michael: 01/15/19 07:52:18PM
michael
@michael
01/15/19 07:47:29PM
7,839 posts

Video Poster Background Not Showing


Using Jamroom

SoftDesigns:
...
Question: If I host this Video on a different public server, how can I embed this video into the "bio" field of the profile?
...

iframe?
michael
@michael
01/15/19 07:38:54PM
7,839 posts

Moving a media image file


Jamroom Developers

There's a module that moves stuff from one profile to another. Im looking for it now. Cant remember the name. That will have how to do it in it.

--edit--
Found it, its called jrChangeOwner.

Look in the index.php view_jrChangeOwner_change_save() function.

The bit on moving files around is this:

                    // Check for and move any files
                    $_files = jrCore_get_directory_files(jrCore_get_media_directory($_xt['_profile_id']));
                    if ($_files && is_array($_files) && count($_files) > 0) {
                        foreach ($_files as $file) {
                            if (strstr($file, "{$_post['module']}_{$_xt['_item_id']}")) {
                                $sdir = jrCore_get_media_directory($_xt['_profile_id']);
                                rename("{$sdir}/{$file}", "{$tdir}/{$file}");
                            }
                        }
                    }

updated by @michael: 01/15/19 07:44:29PM
  98