Forum Activity for @michael

michael
@michael
07/08/18 09:23:13PM
7,823 posts

Reset Caches


Using Jamroom

Its always on. There's no reason to uncheck it. If you reset the caches, you reset the memory cache.
michael
@michael
07/08/18 07:09:28PM
7,823 posts

How do I add a check box in a module ?


Using Jamroom

In your code you have this:
// radio Title
$_tmp = array(
'name' => 'radio_title',
'label' => 3,
'help' => 4,
'type' => 'text',
'validate' => 'printable',
'required' => true,
'onkeypress' => "if (event && event.keyCode == 13) return false;"
);
jrCore_form_field_create($_tmp);

That is a form field for a 'text' field, to add a checkbox, just use the checkbox type

    $_tmp = array(
        'name'     => 'radio_checkbox',
        'default'  => 'off',
        'type'     => 'checkbox',
        'validate' => 'onoff',
        'required' => 'off',
        'label'    => "The Checkbox",
        'help'     => "You can add your explanation of what its for here"
    );
    jrCore_form_field_create($_tmp);
michael
@michael
07/07/18 05:17:40AM
7,823 posts

Signature of a hacking attempt?


Using Jamroom

no.

Its someone looking to see if you have a GIT repository on your server.

Anyone can type in any address they like to your site to see if it exists, its not hacking, its just asking a question
yoursite.com/do-you-like-avacardos
yoursite.com/my-favorite-color-is-green

It does nothing to your server, your server just replies: 404 page not found. and thats the end of it.

--edit--
a common one you will see is something like
yoursite.com/wp-admin/

they are testing to see if your site is wordpress. if it is then they will start checking all the recorded wordpress vulnerabilities
updated by @michael: 07/07/18 05:19:03AM
michael
@michael
07/03/18 09:41:28PM
7,823 posts

How do I add a check box in a module ?


Using Jamroom

izhmel:...How do I add a check box in a module ?....
Depends on where you want to add it. If you mean to a Form, you can use the Form Designer

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

Video Learning: "Admin Handbook: The Form Designer"
https://www.jamroom.net/video-training/85/the-admin-handbook-the-form-designer
michael
@michael
07/01/18 10:15:08PM
7,823 posts

Send Me a Private Note Button


Design and Skin Customization

This part goes in the template:
{if jrCore_module_is_active("jrPrivateNote") && $quota_jrPrivateNote_allowed == "on"}
    <div id="profile_contact">
        {jrCore_module_url module="jrPrivateNote" assign="nurl"}
        <a href="{$jamroom_url}/{$nurl}/new/user_id={$_user_id}" title="Message This Profile">{jrCore_icon icon="envelope2" size="35" class="email"}</a>
    </div>{/if}
and this part goes into a .css file somewhere
#profile_contact {
text-align: center;
}
#profile_contact .sprite_con {
display: inline;
border: none;
padding: 10px;
box-shadow:none;
}
michael
@michael
06/30/18 11:42:58PM
7,823 posts

Marketplace Issue


Genosis

Great. If you have that control option, can you upgrade it to php7? you will notice a speed increase if you can.
michael
@michael
06/30/18 11:11:38PM
7,823 posts

Marketplace Issue


Genosis

curl looks like its being blocked on your server. contact your host and ask them to enable it.
michael
@michael
06/30/18 10:27:21PM
7,823 posts

Marketplace Issue


Genosis

And there are no other issues in your SYSTEM CHECK? then check your activity log to see if there are any errors there:
ACP -> DASHBOARD -> ACTIVITY LOG

* ACTIVITY LOG
* ERROR LOG
* DEBUG LOG
michael
@michael
06/30/18 09:22:51PM
7,823 posts

Followers sometimes get doubled listing in 'my followers' list


Using Jamroom

I think its related to the FriendsToFollowers module but don't know how to reproduce it. Without that, going searching for how to make it happen is lower priority.
  121