View Issue Details

IDProjectCategoryView StatusLast Update
0001146OXID eShop (all versions)2. ----- eShop backend (admin) -----public2009-07-30 13:22
Reporterhenriks Assigned To 
PrioritynormalSeveritytrivialReproducibilityalways
Status closedResolutionduplicate 
Product Version4.1.3 revision 19918 
Summary0001146: Meadia File upload in admin area fails
DescriptionIf numbers >3 are included, an exception is thrown.

There is a simple typo in the "wrong chars in file name?"-check in file:

/core/oxutilsfile.php - line 534

Instead of
 if ( !eregi('^[_a-z0-3\.]+$', $aFileInfo['name'] ) ) {

please use:

 if ( !eregi('^[_a-z0-9\.]+$', $aFileInfo['name'] ) ) {

change the 3 into a 9.

Thank you!

TagsNo tags attached.
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Relationships

duplicate of 0000869 resolvedarvydas_vapsva Media files with a number bigger than 3 in filename can't be uploaded 

Activities

dainius.bigelis

2009-07-30 13:22

reporter   ~0001326

Duplicated of 0000869