Forum Activity for @michael

michael
@michael
06/19/14 11:31:15PM
7,832 posts

Table Tag Removed After Saving


Using Jamroom

add:
,table,tr,td
to the quotas and your table will be allowed in the page.
michael
@michael
06/19/14 11:27:30PM
7,832 posts

Table Tag Removed After Saving


Using Jamroom

why'd you delete the last post. Now I have to type my response over again. :(

Check that you have table in the "allowed HTML tags" for that users quota.

Your-Site.com/core/admin/quota
michael
@michael
06/19/14 11:21:33PM
7,832 posts

Invalid Activation Key!


Jamroom Developers

Please provide steps to replicate the situation. Here is a screenshot of it working both with skip_triggers and without. You can see both sets of results contain user information.
screenshot_skip_triggers.png screenshot_skip_triggers.png - 149KB

updated by @michael: 06/19/14 11:21:50PM
michael
@michael
06/19/14 10:59:21PM
7,832 posts

Invalid Activation Key!


Jamroom Developers

So the account validation key is not working because the account hasn't been created... makes sense.

Which one of your custom modules is stopping the account from being created. Turn that one off.

sbhadauria:
Above mentioned query is not working, when I use "'skip_triggers' => true" in above query then I get the result.

The more information you can give makes it easier to help you. The goals your trying to achieve.

If you ask cryptic questions they tend to get ignored.
    $_params = array(
        'search'        => array(
            "user_validate = 1fc5a6305ae33377ebd579cba4042959"
        ),
        'privacy_check' => false,
        'skip_triggers' => true
    );
    $_rt = jrCore_db_search_items('jrUser', $_params);
Works for me.

sbhadauria:
what is the issue behind this and how can I change core file ?
Detail what you think the issue is, then how to reproduce it, then outline what you want to change.
michael
@michael
06/19/14 07:12:44PM
7,832 posts

new artists


Jamroom Help

What is the jrCore_list call that is creating that page?

in mediaPro it is:
{jrCore_list module="jrProfile" order_by="_created desc" search1="profile_active = 1" quota_id=$_conf.jrMediaPro_artist_quota template=$new_artists_template require_image="profile_image" pagebreak="6" page=$_post.p}

so as long as the user has 'profile_active' set to 1 and they are in the quota_id of $_conf.jrMediaPro_artist_quota

Then they should show up.
michael
@michael
06/19/14 01:18:38AM
7,832 posts

jamroom datepicker


Jamroom Developers

The datepicker is a form element. There is no function to use it in a template.

to use it in a form see how its done in the jrBlog module
    // Blog Publish Date
    $_tmp = array(
        'name'     => 'blog_publish_date',
        'label'    => 22,
        'help'     => 23,
        'type'     => 'datetime',
        'validate' => 'date',
        'required' => false
    );
    jrCore_form_field_create($_tmp);
michael
@michael
06/18/14 03:19:45AM
7,832 posts

create video error


Jamroom Developers

Love your avatar @serge-sx :) cute wombat.
michael
@michael
06/18/14 02:31:21AM
7,832 posts

create video error


Jamroom Developers

Have you seen the step-by-step instructions for setting up a server on Digital Ocean? Those are the ones I followed:

"High Performance Jamroom on Digital Ocean"
https://www.jamroom.net/the-jamroom-network/blog/23/high-performance-jamroom-on-digitalocean

Php version
$ php -v
PHP 5.5.9-1ubuntu4 (cli) (built: Apr  9 2014 17:11:57) 
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
    with Zend OPcache v7.0.3, Copyright (c) 1999-2014, by Zend Technologies

Apache version:
$ apache2 -v
Server version: Apache/2.4.7 (Ubuntu)
Server built:   Apr  3 2014 12:20:28

I installed on top of ubuntu server 14.04 LTS (64bit)
michael
@michael
06/17/14 10:51:31PM
7,832 posts

create video error


Jamroom Developers

Here is my /etc/mysql/my.cnf
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
# 
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port            = 3306
socket          = /var/run/mysqld/mysqld.sock

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket          = /var/run/mysqld/mysqld.sock
nice            = 0

[mysqld]
#
# * Basic Settings
#
user            = mysql
pid-file        = /var/run/mysqld/mysqld.pid
socket          = /var/run/mysqld/mysqld.sock
port            = 3306
basedir         = /usr
datadir         = /var/lib/mysql
tmpdir          = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address            = 127.0.0.1
#
# * Fine Tuning
#
key_buffer              = 256M
max_allowed_packet      = 32M
thread_stack            = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
table_cache             = 1536
tmp_table_size          = 128M
max_heap_table_size     = 128M
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit       = 1M
query_cache_size        = 32M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1
#
# Error log - should be very few entries.
#
log_error = /var/log/mysql/error.log
#
# Here you can see queries with especially long duration
#log_slow_queries       = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
#       other settings you may need to change.
#server-id              = 1
#log_bin                        = /var/log/mysql/mysql-bin.log
expire_logs_days        = 10
max_binlog_size         = 100M
#binlog_do_db           = include_database_name
#binlog_ignore_db       = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
innodb_buffer_pool_size = 512M
innodb_flush_method     = O_DIRECT
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem



[mysqldump]
quick
quote-names
max_allowed_packet      = 16M

[mysql]
#no-auto-rehash # faster start of mysql but no tab completition

[isamchk]
key_buffer              = 16M

#
# * IMPORTANT: Additional settings that can override those from this file!
#   The files must end with '.cnf', otherwise they'll be ignored.
#

updated by @michael: 06/17/14 10:53:13PM
michael
@michael
06/17/14 06:42:09PM
7,832 posts

add the user login form to any page is causing an error


Design and Skin Customization

michael:
Try wrapping your code in [ code ] the code in here [ /code ] blocks.

remove the spaces between the bracket and the word 'code'

I'm meaning here in this fourm. so I can read it.
  687