Forum Activity for @michael

michael
@michael
04/23/20 08:59:17PM
7,791 posts

Lucid Skin Error gets my server blocked on Chrome and Safari


Installation and Configuration

What happens when the selection in the "CSS File" option is selected is the:
jrCore_create_media_directory()

function is called that tries to create a new media directory which should be created at:
/public_html/data/media/0/0

and if that cant be created you should see it in the error log at:
/public_html/data/logs/error_log

My current best guess is the apache2 user does not have write permissions for that location and that's whats causing the error.

--edit--
It looks like the block can be navigated around by using the CONTAINER TABS plugin in firefox:
https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/

just open as a different user and the block is no longer in place.
updated by @michael: 04/23/20 09:02:07PM
michael
@michael
04/23/20 08:03:40PM
7,791 posts

Adding Multiple TXT files to a Blog post


Installation and Configuration

maybe zip the txt files into chapter-1.zip, or label the chapter text files
* april-something-o1.txt
* april-something-o2.txt
* april-something-o3.txt
* april-something-o4.txt
......
Then when the new chanpter comes out, edit the first comment and add some more files
* may-something-o1.txt
* may-something-o2.txt
* may-something-o3.txt
* may-something-o4.txt

The other way to do it is to use the jrFile module and add the files to the FILES tab of the profile so they are there when the blog post is made, then you can use the "Embed Media" (jrEmbed) module to attach the files to the blog post. (bit more work though and I thought the request was one of speed)
michael
@michael
04/22/20 11:00:39PM
7,791 posts

Adding Multiple TXT files to a Blog post


Installation and Configuration

one way it could be done immediately would be to store the attachments in the first comment of the blog post.
(.mp4 screencast is in the .zip file attached.)
michael
@michael
04/22/20 10:32:39PM
7,791 posts

Lucid Skin Error gets my server blocked on Chrome and Safari


Installation and Configuration

Never seen that before. Got a URL to to take a look at? Send it to support at jamroom dot net if you dont want to put it publicly.
michael
@michael
04/22/20 06:03:59AM
7,791 posts

Server Move


Installation and Configuration

if you can get into the ACP run the integrity check, if you cant, rename the repair.php.html to repair.php and open that in a browser.

access via SFTP.

--edit--
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do
updated by @michael: 04/22/20 06:04:57AM
michael
@michael
04/17/20 06:46:58PM
7,791 posts

JrBirthday causing SSL error on page


Jamroom Developers

The cause of the ssl error is the http:// You need to figure out why one item is behaving differently than the others.
michael
@michael
04/15/20 06:34:05PM
7,791 posts

enabled APC functions on server


Using Jamroom

Its used by PHP.

PHP Manual: APC ("Alternative PHP Cache")
https://www.php.net/manual/en/book.apc.php

Information about it:

"What is APC and what is it used for?"
https://pantheon.io/docs/alternative-php-cache
Quote: .....APC stands for the Alternative PHP Cache. PHP is a dynamic language that is compiled on-demand into bytecode at execution time. To improve performance, APC stores this bytecode so that it can be reused instead of having to be recompiled each time......

updated by @michael: 04/15/20 06:34:46PM
michael
@michael
04/15/20 04:48:17AM
7,791 posts

JrBirthday causing SSL error on page


Jamroom Developers

In your sites config.php file found via SFTP at:
/public_html/data/config/config.php

what is configured for jrCore_base_url
$_conf['jrCore_base_url'] = 'http://itembo.com';

is it http:// or https://

The jrBirthday template that is in use with that image is birthday.tpl

It looks to be using the correct variable {$jamroom_url} which should match your sites config.php file.

You can customize that file either from the TEMPLATES tab in the ACP or by copying it to your skins
/skins/xxYourSkin/jrBirthday_birthday.tpl
and adjusting it there.

The cause of the error is the path to the file should be https:// but it is http://
michael
@michael
04/13/20 07:30:16PM
7,791 posts

error loading media url


Using Jamroom

The url from the video in your link points to:
https://www.dreadlockssite.com/uploaded_video/stream/video_file/375/file.m4v

The error reads 503 Service Unavailable when trying to access it. That error is not coming from jamroom.

Check the server logs to see if it has any clues as to what the error is complaining about.

--edit--
the video just before that one, does play for me:
https://www.dreadlockssite.com/uploaded_video/stream/video_file/374/file.m4v

--edit--
And the one after plays too:
https://www.dreadlockssite.com/uploaded_video/stream/video_file/376/file.m4v
updated by @michael: 04/13/20 07:32:22PM
michael
@michael
04/13/20 07:26:45PM
7,791 posts

Javascript Form Message


Jamroom Developers

You could use the .form_submit_box element and add your own div in there
function xxSomething_show_error_message(){
    $('.my_error_message').remove();
    $('.form_submit_box').prepend('<div class="my_error_message page_notice error">Some message before the SUBMIT button</div>');
}

Usually there will only be one form on a form page and only one submit button. This way would run into difficulties if there were more than one form on the page, only the first form would get the message.

If its on the skin side of things then thats open to customization so harder to have a fixed setup.

I don't think there is anything specific setup as a do-it-this-way guide on this subject.
  69