| View previous topic :: View next topic |
| Author |
Message |
nosorry
Joined: 22 Jan 2008 Posts: 7
|
Posted: Feb 27, 2008 6:38 pm Post subject: File Error |
|
|
A user notified me that they could not upload a file. The file was named Icon_Converter_Plus_4.1.rar. It will not load here either http://www.sibsoft.net/xfilesharing/.
File Name: Icon_Converter_Plus_4.1.rar
Error happened while upload: unallowed extension
What is going on with that? |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 1901 Location: UFO Lab
|
Posted: Feb 28, 2008 9:15 am Post subject: |
|
|
Have bug there
Here goes quick fix: in upload.cgi find
| Code: | | if( $c->{ext_not_allowed} && $filename=~/\.$c->{ext_not_allowed}$/i ) |
and replace with
| Code: | | if( $c->{ext_not_allowed} && $filename=~/\.($c->{ext_not_allowed})$/i ) |
|
|
| Back to top |
|
 |
nosorry
Joined: 22 Jan 2008 Posts: 7
|
Posted: Feb 28, 2008 5:35 pm Post subject: |
|
|
| Yes it works now. Thanks for the update. Other customers should have it also. |
|
| Back to top |
|
 |
|