Page 23 of 23 FirstFirst ... 13212223
Results 221 to 223 of 223

Thread: Post Images 1.4

  1. #221
    Senior Member
    Join Date
    Oct 2011
    Posts
    135
    Thanks
    18
    Thanked 8 Times in 8 Posts

    Default

    for those having problem with the crop function not working, and the image saved getting all black do this:

    in /post_images/templates/

    edit the file image_script.php

    find (around line 56): $('#cropbox').Jcrop({

    replace with: jQuery('#cropbox').Jcrop({

    that solved my problem, i had spent a lot of time (months!) to figure it out, so im posting it here to keep up the record.

  2. #222
    Senior Member
    Join Date
    Jun 2011
    Location
    Thailand
    Posts
    294
    Thanks
    0
    Thanked 69 Times in 63 Posts

    Default

    This means you had a jQuery conflict. You could have seen that by pressing Ctrl+Shift+J when using Chrome.

    This happens when another script (for example Prototype) is also using $ shortcut or when you are loading two instances of jQuery, or... (There are other cases too :P )

    I am noting this, because you may have the same conflict on your other pages too.

    Permanent remedy:
    a) Try not to use other javascript libraries
    b) If you cannot avoid using other libraries:
    Find this line (usually at the very beginning) in ALL of your javascript files:
    PHP Code:
    $(document).ready(function(){ 
    replace it with:
    PHP Code:
    jQuery(document).ready(function($){ 
    By this fix, you don't need to replace all $'s with jQuery's.
    Last edited by PuckRobin; 03-10-2012 at 05:30 AM.

  3. #223
    Admin & Development shibuya246's Avatar
    Join Date
    Jun 2009
    Location
    Tokyo, Japan
    Posts
    524
    Blog Entries
    2
    Thanks
    119
    Thanked 202 Times in 121 Posts

    Default

    This plugin has been updated to 1.3 now. See top of this thread for download link

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •