Quote:
Originally Posted by maidos
thanks alot for the reply, but should it result blank page when i import only 4 files and they are at least around 450 mb together. isnt it timeoutissue on the script? i removed the htaccess coded and modified it on phpini instead but didnt work much
|
The import feature in the admincp uses a direct unix copy. I don't see how it could time out but let me do some more testing.
Quote:
Originally Posted by maidos
but the thing is members are acting retards ... But using the comma is an idea just that im afraid non my members will pay attention to
|
LOL ... we do have it clearly displayed about using the comma. Try this if you want. In downloads.php around line 1814 FIND:
PHP Code:
$keyword = explode(",",$_POST['query']);
REMOVE the comma in "," making that " " instead ... like this:
PHP Code:
$keyword = explode(" ",$_POST['query']);
By doing that, each word will be a separate search element. You won't be able to search by phrases but that sounds like a good trade-off for you.