Forum Activity for @michael

michael
@michael
09/09/15 10:56:09PM
7,832 posts

Allowed HTML tags fail validation on shared profile


Using Jamroom

Can't reproduce it here, can you help me see it happening? either by letting me play with your site or by a DB dump of your setup that I can install on my dev server.

--edit--
I was using the blog module as my testing ground. The editor was enabled, THREE and FOUR are in different quotas. FOUR is linked to THREE and is a standard user. FOUR could update blog posts that contained italic and bold posts that THREE had created.
updated by @michael: 09/09/15 10:57:29PM
michael
@michael
09/08/15 10:45:33PM
7,832 posts

thumbs up/down every reply in a discussion?


Ning To Jamroom

Wow, that's looking fantastic!
michael
@michael
09/08/15 10:40:21PM
7,832 posts

Allowed HTML tags fail validation on shared profile


Using Jamroom

check that the custom modules verification is the same as the create. Its totally possible to have html allowed on the create form but not allowed in the update form.

So your looking in:
/modules/(custom module name)/index.php

at the view_(module name)_create() function and view_(module name)_update() function.

Guess is that the _create has something like this:
    $_tmp = array(
        'name'      => 'something_body',
        'label'     => 10,
        'help'      => 11,
        'type'      => 'text',
        'validate'  => 'printable'
    );
    jrCore_form_field_create($_tmp);
while the _update() has a different 'validate'
    $_tmp = array(
        'name'      => 'something_body',
        'label'     => 10,
        'help'      => 11,
        'type'      => 'text',
        'validate'  => 'allowed_html'
    );
    jrCore_form_field_create($_tmp);

--edit--
If that's the case then change the validate to both to match each other.

Another thing to try is for Beth to try to update what she just created. If she is unable to update, then its probably that above, but if she can update my guess becomes "The profile quota settings are kicking in for that profile, or other problem" and we can go from there.
updated by @michael: 09/08/15 10:42:38PM
michael
@michael
09/08/15 02:03:24AM
7,832 posts

Allowed HTML tags fail validation on shared profile


Using Jamroom

user/profile FOUR is linked to user/profile THREE.

FOUR adds some bold and italic text via the tinymce to his profile bio. The formatting comes out.
FOUR adds some bold and italic text to THREE's profile via the tinymce. The formatting comes out.

Seams thats not the issue. Think the issue is the [ i ] tags and in textareas where there is not an editor.

You mean like a forum post for example? Beth can add [ i ] to her forum post, but not to some other linked profiles forum post, correct?
michael
@michael
09/07/15 09:40:28PM
7,832 posts

Auto-follow set after posting in a discussion. Other options?


Using Jamroom

I can check it out, but need some specifics. Who is seeing what happen where. Then I'll go look in your setup to see if I can see anything unexpected.
michael
@michael
09/07/15 09:37:17PM
7,832 posts

Cometchat and Analytics ?


Using Jamroom

its should, but the best idea is always to confirm. view the source code of any page your interested in by hitting ctrl+u in your browser then see if the code you want to be there is there.
michael
@michael
09/07/15 09:34:47PM
7,832 posts

File up load issue


Using Jamroom

none of those errors seam related to a file upload. They seam more related to information that was expected to be there not being there in the database.

Check your server error logs to see if there are any server related issues with uploading a file that big. You'd need to have a very powerful server to set the limits for the quota to 500MB.
michael
@michael
09/07/15 08:05:00PM
7,832 posts

how does a member email a photo to their photo section?


Using Jamroom

Its not impossible to build email functionality, but it would be quite a bit of work. The tickets system has email functionality, so something along the same structure would need to be created.
michael
@michael
09/07/15 01:04:30AM
7,832 posts

embedded Vimeo vids crashing new Firefox on windows...anyone else?


Off Topic

using FF 40.0.3 here on linux and your site is playing correctly for me.

First guess would be windows conflict of something, but also try turning off cometchat and see if that makes a difference.
michael
@michael
09/07/15 12:54:41AM
7,832 posts

how does a member email a photo to their photo section?


Using Jamroom

There is no email functionality.

What I would expect to happen is he visits the gallery page on his profile:
your-site.com/(HIS PROFILE)/gallery

Then clicks the + button -> "Select images to upload"

and the photos stored on his phone should become visible. Same as using the website version.
  488