Forum Activity for @michael

michael
@michael
05/03/17 05:56:29PM
7,832 posts

Facebook Share - Error


Using Jamroom

could be related to limiting of that item. (screenshot)
max_number.jpg max_number.jpg - 61KB
michael
@michael
05/03/17 05:54:09PM
7,832 posts

Installing Facebook Pixel In Meta.tpl issues.


Installation and Configuration

You're assuming people reading this know what the "Facebook pixel tracking code" is. I don't know what that is, but the error in the screenshot looks like it probably requires a {literal} wrap. Try this:

Docs: "{literal}{/literal}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/3011/literal-literal
michael
@michael
05/03/17 05:50:25PM
7,832 posts

problem with clone skin tool


Using Jamroom

Yes, just hit the "execute" button. You should see a line of green saying x rows effected.

It reads: "change the strucutre of the jr_jrcore_skin database. Add a new column with the title skin_cloned_from. Things added to that column can be any character, but only up to a limit of 128 characters. If no input comes in when a row is created, dont write NULL instead, just put the contents that you find within these two apostrophes. (which is an empty set)"

After that the cloning of a skin should work without error.
michael
@michael
05/03/17 05:38:13PM
7,832 posts

jrSearch errors in Activity Log


Using Jamroom

Im using:
mysql  Ver 15.1 Distrib 10.1.22-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2
and am unable to reproduce the issue.

1.6.5 is where I got the code from.

Checking here:
https://blogs.oracle.com/mysqlinnodb/entry/innodb_full_text_search_is

It looks like you're JUST below the cut-off point.
Quote:
InnoDB Full-Text Search is in MySQL 5.6.4
.........

But its also written in 2011. any chance of upgrading mysql?
michael
@michael
05/03/17 01:46:51AM
7,832 posts

Timeline refers to gallery name, not item


Using Jamroom

You can adjust it so it works that way for your site. The main reason for it being as it is I would think is that its not certain that each photo will have a title.

When you create a gallery you can upload 10 images at a time. None of those images have titles at this point. To give them a title you'd need to edit the individual image in the gallery and give it a title.

Should be able to adjust it in the jrGallery -> item_action.tpl file.
michael
@michael
05/02/17 09:27:02PM
7,832 posts

jrSearch errors in Activity Log


Using Jamroom

the current version of the jrSearch module has this as its schema.php file
/**
 * db_schema
 */
function jrSearch_db_schema(){
.............

    // Full text search
    $_tmp = array(
        "s_module VARCHAR(64) NOT NULL DEFAULT ''",
        "s_id INT(11) UNSIGNED NOT NULL DEFAULT '0'",
        "s_mod TINYINT(1) UNSIGNED NOT NULL DEFAULT '1'",
        "s_text TEXT NOT NULL",
        "UNIQUE s_unique (s_module, s_id, s_mod)",
        "FULLTEXT s_text (s_text)"
    );

    // NOTE: MySQL 5.6+ and MariaDB can use InnoDB
    $_db = jrCore_db_query("SHOW VARIABLES WHERE Variable_name = 'version'", 'SINGLE');
    if ($_db && is_array($_db) && isset($_db['Value'])) {
        $ver = $_db['Value'];
    }
    else {
        $msi = jrCore_db_connect();
        $ver = mysqli_get_server_info($msi);
    }
    if (strpos($ver, '-')) {
        list($ver,) = explode('-', $ver);
    }
    $engine = 'MyISAM';
    if ($ver && $ver > 5.5) {
        $engine = 'InnoDB';
    }
    jrCore_db_verify_table('jrSearch', 'fulltext', $_tmp, $engine);
.........
}

So it seams like the issue you're hitting is taken into account on the current repo version. Probably that hasn't been released in your version.

Solution is:
* wait for the next release OR
* add that code to your jrSearch/schema.php OR
* upgrade your database version to MySQL 5.6+
michael
@michael
05/02/17 09:19:30PM
7,832 posts

problem with clone skin tool


Using Jamroom

That "skin_cloned_from" error is a new feature that was added to the jrCore. Looks like it got added to 6.0.8, then instead of releasing 6.0.8 that version became the start point for the JR6.1 beta so the core change never got released. Once 6.1 gets out of beta it will stop showing the error.

On you penwhistle club site I have gone into the database:
ACP -> MODULES -> DEVELOPER -> DEVELOPER TOOLS -> DATABASE ADMIN

And run this 'SQL command'
ALTER TABLE jr_jrcore_skin ADD skin_cloned_from VARCHAR(128) NOT NULL DEFAULT ''
That has added the needed column.

You can do the same (or I can if you like) to your other site and your skins should be cloned correctly.

Sorry for the hassle.
michael
@michael
05/02/17 08:25:13PM
7,832 posts

site builder is malfunctioning


Installation and Configuration

If you've run the integrity check and cleared the caches @jsnzim then I'd need to see that one to help further.

Send the login details along with a link to this thread to support at jamroom dot net.
michael
@michael
05/02/17 05:35:01PM
7,832 posts

Forum Feature - Split topics


Suggestions

Hey, its not just me who wins, its the guy looking for answers that gets to find them in the thread marked correctly.

"Help I've lost my dog" thread doesn't get followed up with "Also, I'd like to increase the upload size on my server."

Nobody searching for how to increase the upload size on their server would look in a thread titled "Help, I've lost my dog"....... ;)
michael
@michael
05/02/17 01:26:51AM
7,832 posts

Can no longer add links to images


Design and Skin Customization

Yes, uploading that tinymce.zip file does fix the issue in both Firefox and Chrome.

--edit--
INFO: That version of tinymce.zip is included in JR6.1 currently in beta.
updated by @michael: 05/02/17 01:32:45AM
  227