Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43294
Total Topics: 7523
Most Online Today: 124
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 1
Guests: 102
Total: 103

Author Topic: Bulk upload fails to load  (Read 15227 times)

0 Members and 1 Guest are viewing this topic.

Offline alantani

  • SMF Gallery Pro Customer
  • Member
  • *****
  • Posts: 28
    • View Profile
Re: Bulk upload fails to load
« Reply #15 on: July 04, 2011, 12:41:46 am »
it worked.  thanks a million!!!!!!!!!

Offline alantani

  • SMF Gallery Pro Customer
  • Member
  • *****
  • Posts: 28
    • View Profile
Re: Bulk upload fails to load
« Reply #16 on: February 11, 2012, 01:21:47 am »
ok, i'm back again.   this time i upgraded to gallery pro 4.0 and i am getting an error message for each photo as the photos are loaded in during the "bulk loading" process.  i tried to uninstall 4.0 but i still get the same error.  

when i tried to load a single photo, it worked.   :-[
« Last Edit: February 11, 2012, 01:40:57 am by alantani »

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #17 on: February 11, 2012, 08:36:58 am »
What error message are you getting?
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline alantani

  • SMF Gallery Pro Customer
  • Member
  • *****
  • Posts: 28
    • View Profile
Re: Bulk upload fails to load
« Reply #18 on: February 11, 2012, 03:33:22 pm »
all it says is "an error occured:[]" and that is all.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #19 on: February 13, 2012, 08:27:36 pm »
Fixed new update posted
Bug fix update
4.0.1
!Fixed bug with bulk uploader not working with files other than zip broken in last update
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline alantani

  • SMF Gallery Pro Customer
  • Member
  • *****
  • Posts: 28
    • View Profile
Re: Bulk upload fails to load
« Reply #20 on: February 14, 2012, 02:26:12 am »
it works now. once again, thanks a million!

Offline yol

  • Member
  • *
  • Posts: 22
    • View Profile
Re: Bulk upload fails to load
« Reply #21 on: June 05, 2012, 03:27:45 pm »
Hi SmfHacks,

I have got same problem on latest version. When I try to bulk uplod it says "Multiupload failed to load. An issue occured...."

It was fresh installed, no another mootool js, all directories and files under the fupload are 755, and all js and swf files in the source are OK!.

Help me please...
SEDAT AÇIL

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #22 on: June 05, 2012, 03:32:20 pm »
Can you pm me a login  to check it out.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #23 on: June 05, 2012, 03:58:58 pm »
Looks like issue with fbslidebox

Looks like you have jquery running
Read http://api.jquery.com/jQuery.noConflict/

Code: [Select]

<script type="text/javascript">!window.jQuery && document.write(unescape('%3Cscript src="http://code.jquery.com/jquery.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript">
jQuery(document).ready(function($)
{
$("#FBSlideLikeBox_right").mouseenter(function()
{
$(this).stop().animate({right: 0}, "normal");
}).mouseleave(function()
{
$(this).stop().animate({right: -350}, "normal");
});;
});
</script>
Try change to


Code: [Select]

<script type="text/javascript">!window.jQuery && document.write(unescape('%3Cscript src="http://code.jquery.com/jquery.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript">
$.noConflict();

jQuery(document).ready(function($)
{
$("#FBSlideLikeBox_right").mouseenter(function()
{
$(this).stop().animate({right: 0}, "normal");
}).mouseleave(function()
{
$(this).stop().animate({right: -350}, "normal");
});;
});
</script>
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline yol

  • Member
  • *
  • Posts: 22
    • View Profile
Re: Bulk upload fails to load
« Reply #24 on: June 05, 2012, 04:17:57 pm »
Hi,

When I replaced this codes, all pages are blank-white opened. I disabled the FacebookSlide mod but currently it didnt work?
SEDAT AÇIL

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #25 on: June 05, 2012, 04:26:59 pm »
Sounds like the edit did not take I would undo it.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline yol

  • Member
  • *
  • Posts: 22
    • View Profile
Re: Bulk upload fails to load
« Reply #26 on: June 05, 2012, 04:34:21 pm »
Hey friend!

When I added the "\" and its working fine!... Thank you very much for your support!. And also thank you very much for your great works!!..

Code: [Select]
<script type="text/javascript">!window.jQuery && document.write(unescape(\'%3Cscript src="http://code.jquery.com/jquery.min.js"%3E%3C/script%3E\'))</script>
SEDAT AÇIL

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16451
    • View Profile
Re: Bulk upload fails to load
« Reply #27 on: June 05, 2012, 04:39:15 pm »
Glad you were able to get it working!
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

 

Related Topics

  Subject / Started by Replies Last post
1 Replies
4665 Views
Last post February 12, 2007, 09:47:36 am
by SMFHacks
15 Replies
13585 Views
Last post May 08, 2007, 08:50:19 pm
by epa4wd
11 Replies
12186 Views
Last post November 05, 2008, 05:41:38 am
by neilwheel
9 Replies
7835 Views
Last post November 18, 2009, 08:45:31 am
by RollingRock
2 Replies
4535 Views
Last post September 17, 2009, 04:51:09 am
by william777

+- Recent Topics

Please Help! by fmofmpls
Today at 01:47:09 pm

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal