| Author |
Message |
copper-head

Joined: Nov 20, 2007
Posts: 12
|
Posted:
Wed Nov 21, 2007 4:34 pm |
|
|
|
 |
copper-head

Joined: Nov 20, 2007
Posts: 12
|
Posted:
Wed Nov 21, 2007 5:55 pm |
|
Sorry
I read the post below and made the change |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 893
|
Posted:
Wed Nov 21, 2007 6:51 pm |
|
|
|
 |
copper-head

Joined: Nov 20, 2007
Posts: 12
|
Posted:
Wed Nov 21, 2007 7:12 pm |
|
Got another bug.......
I trying to upload a map ( .zip ) I see that it upload at least evry light blink when i'm uploading, but when it finish it says You must either upload a file or enter a link to a file for this map!
When I look on my main page it says "Maximum upload file size 2M" so where can I change that settings because in COD games maps are between 5M and 21M...............lol |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 893
|
Posted:
Wed Nov 21, 2007 7:16 pm |
|
Unfortunately, your host would probably have to change that upload limit for you. The upload limit is set in the php.ini and most hosts don't allow you to make changes to it. There are some hosts out there that allow you to run your own php.ini to adjust settings, so look through your hosts faq/help section. |
| |
|
|
 |
copper-head

Joined: Nov 20, 2007
Posts: 12
|
Posted:
Wed Nov 21, 2007 7:30 pm |
|
Is it possible to arrive to the same result, if i'm uploading the map myself into the folder?
Will it show into the front page, I know that if it shows, memebers will be able to download it....
Any suggestions |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 893
|
Posted:
Wed Nov 21, 2007 7:34 pm |
|
yeah, you can upload it through FTP and just enter the path to the file manually. It won't just automatically show though, you will first have to upload the file, then add the map from the admin section of map manager. |
| |
|
|
 |
copper-head

Joined: Nov 20, 2007
Posts: 12
|
Posted:
Wed Nov 21, 2007 7:50 pm |
|
Thanks
I just got the answer from my host, it's possible for me to change the php.ini.... unfortunately i am not to sure ( not enough knowledge) to do it...
Look at this maybe you could supply something like this when guys like me as that opportunity...
http://tips-scripts.com/php_ini
Let me know |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 893
|
Posted:
Sun Nov 25, 2007 3:45 pm |
|
I've never seen a script like that used so your host may have to help you with that.
Assuming that script would actually work on your host, the values you want to pay attention to are:
If you want to change the maximum file upload size to something larger than 2MB, add the following:
$parm[] = "upload_max_filesize = 4M"; // user specified max file upload size
And if you want to go larger than 8MB, also add the folowing:
$parm[] = "post_max_size = 10M"; // user specified post max size
You should always make the value post_max_size at least 1M bigger then upload_max_filesize |
| |
|
|
 |
|
|