rhushikeshc / clients-oriented-ftp

Automatically exported from code.google.com/p/clients-oriented-ftp
0 stars 0 forks source link

Can't upload a file #294

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

I can't upaload a file neither as an admin nor a client.

Here is what I get when clicking on "upload" :
"Your browser doesn't support HTML5, Flash or Silverlight. Please update your 
browser or install Adobe Flash or Silverlight to continue." 

When I click on the "upload file" button, upload-process-form.php load but 
there is nothing on it (cf jpg).

I made the changes found here I made the changes described here : 
http://code.google.com/p/clients-oriented-ftp/issues/detail?id=230
without any changes.

If it may help, here as what I know about my stuff :

- OS : Macosx 10.7.5
- I use http protocole, not https
- It's on a personnal server
- I use a database only dedicated to ProjectSend
- MySQL 5.1
- PHP4, 5.2, 5.3 & 5.4 supported
- Linux server
- I use Firefox 20.0 - Safari 6.0.4 - Chrome 26.0.1410.65

Any help would be very appreciated.
Thank you in advance.

Original issue reported on code.google.com by f.antu...@gmail.com on 9 May 2013 at 5:45

Attachments:

GoogleCodeExporter commented 8 years ago
You seem to be missing a lot of stuff on that screenshot, not just the uploader.
Could you create an user for me with the email info@subwaydesign.com.ar so I 
can check it please?

Original comment by i...@subwaydesign.com.ar on 9 May 2013 at 5:48

GoogleCodeExporter commented 8 years ago
It's done. 
Thank you very much. 

Original comment by f.antu...@gmail.com on 9 May 2013 at 6:10

GoogleCodeExporter commented 8 years ago
It seems that jQuery isn't loading. A small modification has to be made to 
correct a bug that another user found before.
Are you comfortable editing a php file and uploading it again via ftp?

All you need to do is change line 44 of header.php

It reads:
<script type="text/javascript" src="<?php echo PROTOCOL; 
?>://code.jquery.com/jquery-1.8.3.min.js"></script>

change it to:

<script type="text/javascript" 
src="http://code.jquery.com/jquery-1.8.3.min.js"></script>

Since you don't use https, it will be fine. The next update will have this 
corrected. Sorry.

Original comment by i...@subwaydesign.com.ar on 9 May 2013 at 6:49

GoogleCodeExporter commented 8 years ago
Hi again; 
I edited and uploaded header.php but it's still the same…

Do you think I have to edit other files too ?
If it can helps, I already edited and uploaded files as explained here 
http://code.google.com/p/clients-oriented-ftp/issues/detail?id=230  too.

Anyway, thanks for your time and your quick replies. :-)

Original comment by f.antu...@gmail.com on 10 May 2013 at 9:00

GoogleCodeExporter commented 8 years ago
Just a note for the last comment on here, after uploading header.php from 
http://code.google.com/p/clients-oriented-ftp/issues/detail?id=230 did you 
change 

(header.php: line 44: From:)

    <script type="text/javascript" src="<?php echo PROTOCOL; ?>//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

to

 <script type="text/javascript" src="<?php echo PROTOCOL; ?>://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> 

(notice the : added before the //) After doing this it all worked for me, and I 
am also using https.

Original comment by linexmar...@gmail.com on 14 Jun 2013 at 3:27