|
thunderstrike
|
 |
« on: September 14, 2007, 04:28:16 AM » |
|
Detail: Fix extension check of SQL. Find: if (is_file(ROOT_PATH.DATABASE_DIR."/".$file) && $file != "." && $file != ".." && eregi("\.sql",$file)) {
replace: 1
| if (@file_exists(ROOT_PATH.DATABASE_DIR."/".$file) && $file != "." && $file != ".." && preg_match("/\.sql/", $file)) {
|
|
|
|
|
|
« Last Edit: August 27, 2011, 01:45:55 PM by thunderstrike »
|
Logged
|
8 steps need when ask question -
- PHP version (ACP - > phpinfo()) - mySQL version (ACP - > phpinfo()) - 4images version - Post screenshot / URL - Post code in BB Code (no need full file for code) or post attach file - It doesn't work. What is say - what is do for no work - Install MOD ? If so - please say (troubleshooting) - Read FAQ ? Install Bug fixes ?
|
|
|
|
thunderstrike
|
 |
« Reply #1 on: September 15, 2007, 05:44:28 AM » |
|
Find (2 time): if (eregi("\.gz", $file)) {
replace: 1
| if (eregi("\.gz$", $file)) {
|
|
|
|
|
|
|
Logged
|
8 steps need when ask question -
- PHP version (ACP - > phpinfo()) - mySQL version (ACP - > phpinfo()) - 4images version - Post screenshot / URL - Post code in BB Code (no need full file for code) or post attach file - It doesn't work. What is say - what is do for no work - Install MOD ? If so - please say (troubleshooting) - Read FAQ ? Install Bug fixes ?
|
|
|
vanish
Jr. Member

Offline
Posts: 60
Thank You
-Given: 0
-Receive: 0
|
 |
« Reply #2 on: January 21, 2008, 01:02:32 PM » |
|
After applying this FIX backup.php don't working correctly - blank backup table
|
|
|
|
|
|
Logged
|
|
|
|
|
thunderstrike
|
 |
« Reply #3 on: January 21, 2008, 02:10:36 PM » |
|
And ... PHP and 4images version ?
|
|
|
|
|
|
Logged
|
8 steps need when ask question -
- PHP version (ACP - > phpinfo()) - mySQL version (ACP - > phpinfo()) - 4images version - Post screenshot / URL - Post code in BB Code (no need full file for code) or post attach file - It doesn't work. What is say - what is do for no work - Install MOD ? If so - please say (troubleshooting) - Read FAQ ? Install Bug fixes ?
|
|
|
vanish
Jr. Member

Offline
Posts: 60
Thank You
-Given: 0
-Receive: 0
|
 |
« Reply #4 on: January 23, 2008, 03:16:07 PM » |
|
4images 1.7.4 PHP Version 4.3.10
|
|
|
|
|
|
Logged
|
|
|
|
|
thunderstrike
|
 |
« Reply #5 on: January 24, 2008, 01:07:10 AM » |
|
If check download.php file, fix is correct for check file with eregi check function. Fix is good ...
|
|
|
|
|
|
Logged
|
8 steps need when ask question -
- PHP version (ACP - > phpinfo()) - mySQL version (ACP - > phpinfo()) - 4images version - Post screenshot / URL - Post code in BB Code (no need full file for code) or post attach file - It doesn't work. What is say - what is do for no work - Install MOD ? If so - please say (troubleshooting) - Read FAQ ? Install Bug fixes ?
|
|
|
|