Forum Activity for @michael

michael
@michael
01/11/17 04:50:32PM
7,832 posts

Your tube API key


Using Jamroom

That means some settings you have setup at google are blocking your API key from working. Its asking you to go into your google account where you configured your youtube API key and make sure the settings there allow the site you are using the key from to use your API.

check your google settings.
michael
@michael
01/11/17 01:49:27AM
7,832 posts

Embedding Twitter timeline widget on site


Design and Skin Customization

should be the same. FTP on the index page is also template code can I see the URL?
michael
@michael
01/11/17 12:45:04AM
7,832 posts

Possible Photo Album Bug?


Using Jamroom

Not intentional. Bug. Should take you to the same place the arrow goes to.

--
Update from the marketplace and it should be fixed.

Thanks for reporting this.
michael
@michael
01/10/17 09:26:33PM
7,832 posts

glitch when posting links to site media urls in comments/posts


Using Jamroom

if you didnt use the link button at all, Media URL scanner would convert that into a nice card for the link with info about where the link goes to and whats there. all that info, we're calling a 'card' or a 'media card'.

Like an index card of what is at where the link is pointed to.

like when you put a youtube link in and it converts it to a player.

Its the use of the button thats getting in the way in this situation. by using the button the clicker is adding extra HTML to the link that the system isnt expecting. The system is expecting the user to paste in html links, then expecting that other users will want to click on them, so the system is converting the links it finds into clickable links. but in this case there are 2 links and the systems clash. need to fix this.

Your first answer answers my question. I know how it should be when its fixed now. thanks.
michael
@michael
01/10/17 09:18:44PM
7,832 posts

How do i add a login box to my index page.


Design and Skin Customization

Nice one. Good on you for trying to learn CSS.

The issue here is there is a lot of other info that is making the whole system look like the video is making it look, but you've only copied a portion of that. So the portion you have copied has worked and has some left-over bits that do nothing.

I can see what you're after though.

This will get you closer, then you need to tweak it:
.logincontainer {
    background-color: rgba(29, 30, 12, 0.8);
    border-radius: 4px;
    color: white;
    margin: 50px;
    padding: 37px;
    width: 500px;
}


.loginbody {
    background-color: #FFED00;
    background-size: 100% 720px;
}
michael
@michael
01/10/17 09:04:42PM
7,832 posts

Login Event Listener


Jamroom Developers

Try this one:
/modules/sdContestMWUser/include.php
<?php
/**
 * 2017 SoftDesigns
 */

//Ensure this module not called directly:
defined('APP_DIR') or exit();

/**
 * meta
 */
function sdContestMWUser_meta(){
    $_tmp = array(
        'name'        => 'ContestMWUser',
        'url'         => 'ContestMWUser',
        'version'     => '1.0.0',
        'developer'   => 'SoftDesigns',
        'description' => 'Verify Contest User',
        'category'    => 'tools'
    );
    return $_tmp;
}

/**
 * init
 */
function sdContestMWUser_init(){
    jrCore_register_event_listener('jrUser', 'login_success','sdContestMWUser_login_success_listener');
}

/**
 * @param $_data
 * @param $_user
 * @param $_conf
 * @param $_args
 * @param $event
 * @return mixed
 */
function sdContestMWUser_login_success_listener($_data, $_user, $_conf, $_args, $event)
{ $_Log1 = "sdsdContestMWUser"; $_Log2 = "sdContestMWUser_login_success_listener"; $_Log3 = $_args; // $_fdebug = array( 'What' => "trying to figure out whats going on in this listener event sdContestMWUser_login_success_listener()", '$_log1' => $_Log1, '$_log2' => $_Log2, '$_log3' => $_Log3 ); fdebug($_fdebug); // jrCore_logger('inf', 'fired the login success listener, it worked'); return $_data; }

updated by @michael: 01/10/17 09:07:25PM
michael
@michael
01/10/17 08:56:08PM
7,832 posts

Login Event Listener


Jamroom Developers

The first thing I can see that is incorrect is the use of the jrCore_logger() function.

Attached is a screenshot of that function with its docblock exposed.

You can see from the extra info that the correct usage for that function is jrCore_logger('INF', 'this is an info message that gets logged in the activity log.');

The rest of your function looks like it should be working. Make sure that you module is active in the ACP. Only active modules will work.

go to your modules INFO tab and check the ACTIVE checkbox and save. then run the integrity check. It should be working.
screenshot_docblock.png screenshot_docblock.png - 380KB
michael
@michael
01/10/17 03:57:49PM
7,832 posts

How do i add a login box to my index page.


Design and Skin Customization

The CSS you posted is doing what its supposed to do. It reads "set the width of the login container to 500 px and in the center of the screen. make its background color blackish and have rounded corners, give it a bit of space on the top."

Then the ext bit reads "put this in the center of the page, make its background color yellow and make it 720px wide"

so its doing what its asked to do. What I want to know is do you have CSS that makes the layout you want, maybe from a skin you've purchased somewhere, or from a designer who has done it for you, or other.......

Or are you looking for someone to construct the CSS necessary to reproduce what is on your image.
michael
@michael
01/10/17 02:27:52PM
7,832 posts

Getting error with Audio


Using Jamroom

I'll need to setup a testing environment for this. Could you check if it is working on a custom skin like jrElastic? If it works on elastic then the issue is likely a template variable issue on the custom skin. If it doesnt work on jrElastic then the issue is likely related to the profile domains module.

Will get setup here.
  293