Forum Activity for @melih

Melih
@melih
05/04/17 06:52:40AM
198 posts

jrSearch errors in Activity Log


Using Jamroom

Ok, these things are beyond my knowladge actually.

I checked with command mysql -V:
mysql  Ver 14.14 Distrib 5.5.43, for debian-linux-gnu (x86_64) using readline 6.2

I have a friend who knows these thing better than me :) I will ask him about mysql version and upgrade it
Melih
@melih
05/03/17 03:56:32AM
198 posts

jrSearch errors in Activity Log


Using Jamroom

I am using jrSearch 1.6.5. I began to see those errors after update the Search module. And ıt's shema.php is
/**
 * db_schema
 */
function jrSearch_db_schema(){
    // Popular searches DS
    jrCore_db_create_datastore('jrSearch', 'search');

    // 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);
    return true;
}
I couldn't find any difference

MySQL is v. 5.6.34

So i think i need to wait the next release

Thanks Michael.
Melih
@melih
05/02/17 02:46:35PM
198 posts

jrSearch errors in Activity Log


Using Jamroom

Hello guys,

I am seeing these errors in the Activitiy Log:
jrCore_db_verify_table() fulltext index on jr_jrsearch_fulltext requires MyISAM table type!

I tried to change that table's type to MyISAM but integrity check changes back:
changed MySQL engine type to InnoDB for table: jr_jrsearch_fulltext
I delete the Search module and reinstall but no luck.
I don't know what to do, any ideas?
updated by @melih: 08/05/17 03:23:09AM
Melih
@melih
02/06/17 02:58:55AM
198 posts

adding to skin language


Design and Skin Customization

Because after update your language files will be left in old version's directory. You need to recover your language file (simple move your file to new verison's lang directory). But in your case you need to check the the new file in every update to see if there is new lines added or not.

There is an another option:
If you have a custom module, you can add your lines to your module's language file and you can use it wherever you want. There will be no update issue because this is your own custom module.
updated by @melih: 02/06/17 03:00:18AM
Melih
@melih
02/05/17 01:38:18PM
198 posts

Public page on a limited site


Jamroom Developers

Thank you Michael!
Melih
@melih
02/04/17 11:59:18AM
198 posts

Public page on a limited site


Jamroom Developers

Thank you for your effort Michael. I really appreciate it.

I will continue to use Require Login and maybe i can find another way to do this in time.

Thanks
Melih
@melih
02/04/17 09:39:36AM
198 posts

Public page on a limited site


Jamroom Developers

First i think is't only about site's privacy setting. I realize it afterwarts it's not only about privacy setting but also with jrGenCore Require Login setting. So maybe @brian can say something about this.
updated by @melih: 02/04/17 09:49:34AM
Melih
@melih
02/04/17 09:30:26AM
198 posts

Public page on a limited site


Jamroom Developers

If i desabe jrGenCore Require Login option not logged in viewer can see the main page wich i don't want
Melih
@melih
02/03/17 12:22:50PM
198 posts

Public page on a limited site


Jamroom Developers

Yes it's active and if i uncheck the Require Login option of jrGenCore i can see the about page without login in. But with that option i cannot see the page
  3