This topic is locked

File Backup Site

4/28/2012 4:28:50 AM
PHPRunner General questions
S
swanside author

I am trying to make a backup site for some of my files that I use while working away.
I have a database like this

<?xml version="1.0" standalone="yes" ?>

- <phprunner phpversion="5.2.14" mysqlversion="5.0.92-community">

- <tables>

- <table name="Files">

- <fields>

<field name="FileId" size="11" scale="0" type="int" auto_increment="auto_increment" key="PRI" default="" null="NO" />

<field name="FileName" size="50" scale="0" type="varchar" key="" default="" null="YES" />

</fields>

</table>

</tables>

</phprunner>



and I have set the add page to be a files and to a specific folder.

I build my project and I go to my add page and upload a small file, about which is about 1Kb and it goes in OK, I repeat this with a picture file about 2.5mb and that goes in OK, but when I try it with a ZIP files about 20mb, it processes it, but does not save it. It says the file has uploaded, but when I ftp into thte specific folder, the file is not there.
I can FTP the zip file in using an FTP client, so I dont understand why it wont allow me to upload it using the webpage add new feature?
Any ideas please?

Cheers

Paul

Sergey Kornilov admin 4/29/2012

Paul,
check web server/PHP limits on file upload. Check this article for more info:

http://php.net/manual/en/features.file-upload.php
If you do not have access to php.ini talk to your web hosting company in this regard.

S
swanside author 4/29/2012



Paul,
check web server/PHP limits on file upload. Check this article for more info:

http://php.net/manual/en/features.file-upload.php
If you do not have access to php.ini talk to your web hosting company in this regard.


Cheers, will email them tomorrow.

S
swanside author 4/30/2012



Cheers, will email them tomorrow.



They said they dot allow php uploads over 10 mb, FTP is ok?
Is there a way that the connection can be changed to FTP upload files to a folder?

Cheers