Uploading 500MB Tar.gz File In Telnet
Jan 23, 2006
I am having trouble uploading a 500mb file with File Manager in the control panel as well as SmartFTP. I was told to upload this large file through Putty. I able able to login through SSH as root, but i can't seem to find the right directory to upload this file into. This file is a backup file of the home directory. I am transferring all files from my old host to my new host. How would I find the right directory and upload this file through Telnet.
View 0 Replies
ADVERTISEMENT
Sep 21, 2007
I decided to disable Telnet in my server. I get an Article ::
1. Login to your server through SSH and su to root.
2. Type pico /etc/xinetd.d/telnet
3. Look for the line: disable = no and replace with disable = yes
4. Now restart the inetd service: /etc/rc.d/init.d/xinetd restart
5. Turn off it through chkconfig as well because it can still start through that.
/sbin/chkconfig telnet off
6. Scan your server to ensure port 23 is closed.
nmap -sT -O localhost
Also run ps -aux | grep telnet and if you find anything other than "grep telnet" as result kill the process.
But /etc/xinetd.d/telnet doesn't exist in my server.
View 5 Replies
View Related
Jan 2, 2006
Does anyone host with 1and1 and use PHP to upload files???
I can't find anywhere on the 1and1 FAQs that say what the temporary file directory is for uploaded files.
Anyone been there before who can help?
View 3 Replies
View Related
May 22, 2008
I've just installed SSL and I'm wondering where should I put my files so that users from web are accessible only through SSL?
Do I have to upload whole site to the Private_html folder instead of public_html folder?
View 4 Replies
View Related
Jun 2, 2008
i have a problem trying to upload files to a server, when i try and upload a file, (.htm) i get a message: file already exists (even though it doesn't), which if i then say to overwrite, it creates an empty file of 0mb, (with the name of the file i am trying to upload).
i don't know a great deal about web servers - are there any web server settings which may be causing this.
View 8 Replies
View Related
Jul 3, 2009
It appears that some people like to take advantage of those files for online web applications such as Wordpress which have php files with permissions set to 777. They use those as a means of creating an upload file. The upload files that they create then have access to the whole server somehow... Is there anyway of preventing this from happening?
View 8 Replies
View Related
May 17, 2007
I have a Dating Portal >>> Dating Sites but HTML file isn't uploading on my server "site5.com" Except HTML file every file is uploading there but HTML isn't
View 2 Replies
View Related
Apr 8, 2008
anyone knows file sharing/uploading site hosted on akamai server?
i know few sites where i can share video but wanna know sites where i can upload any files and share.
View 3 Replies
View Related
Aug 12, 2014
I am getting following error while uploading jpg images using file manager.
Unable to copy (C:Program Files (x86)ParallelsPleskPrivateTempagenta68ae7b7e47ebe9a8f021ecaf928d247php8699.tmp) to (C:Program Files (x86)ParallelsPlesk
mp{3f060750-21f6-11e4-80b6-c3d8b970534c}): (112) There is not enough space on the disk. (Error code 1)
View 2 Replies
View Related
Apr 28, 2014
I'm trying to upload backup ms sql server file. But the Control panel tells me error: "Error: copy_file failed: filemng cp failed:"
"The issue usually occurs due to exceeded disk quota. Check it."
View 6 Replies
View Related
Aug 15, 2007
I have an empty dedicated server, with plesk installed.
What surprised me was it was using 500mb of ram, when nothing was installed, no websites.
Code:
Mem: 2073912k total, 526132k used, 1547780k free, 28800k buffers
what is consuming the memory?
View 4 Replies
View Related
May 3, 2008
I'm the webmaster for a church website: stpetersbraunstone.org.uk and our domain & hosting renewal is coming up, so I'm looking to see if there's a better deal.
We're with namehog.net (and have been for 2 years with no problems at all) on their Professional package. The renewal fees are 105GBP (web hosting) + 5.90GBP (domain name) + 17.5pc VAT to cover the next 2 years, which comes to 130.31GBP.
The site is powered by WordPress, so PHP and MySQL are needed. And we upload lots of photos, so need at least 250MB webspace I'd have thought. So far, our highest monthly bandwidth usage has been under 800Mb, and our visitor numbers are increasing and our highest monthly figure so far was 401.
Any recommendations gratefully received. There seems to be many different companies out there who offer what I want, so I'm after some personal recommendations please.
I've already used this site to discount streamline.net due to bad reviews.
I'm looking at fuzioned.com and redfoxhosting.co.uk - any thoughts?
I've also come across no-wires.co.uk - has anyone had any good or bad experiences with them?
And yes, I have submitted my details to the "request quote" thing.
View 11 Replies
View Related
Feb 27, 2007
basically i cant find any straightforward info on how to use telnet, how to administer users, add/remove etc.
View 5 Replies
View Related
Nov 20, 2006
I need help with understanding the difference between Telnet and SSH. I am in the process of signing up for a hosting plan and I have asked the sales rep if we will have telnet access. Their reply was that we have full root access via SSH.
Any help that anyone can offer on the differences and benefits/drawbacks would be much appreciated.
View 9 Replies
View Related
Jan 3, 2008
I'm looking to run this small telnet script to reboot my router using vistas built-in telnet client:
192.168.1.1 23
WAIT "login"
SEND "my_login_idm" (enter your login ID here)
WAIT "Password"
SEND "my_login_passm" (enter your password here)
WAIT "#"
SEND "rebootm"
WAIT "#"
...without much luck.
View 4 Replies
View Related
Mar 22, 2007
I can't telnet to mail server. when I try
# telnet mail.domain.com 25
Trying xxx.xxx.xx.xx...
telnet: connect to address xxx.xxx.xx.xx: Connection refused
telnet: Unable to connect to remote host: Connection refused
but when it's
# telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
220 mail.domain.com ESMTP
it connects. I don't have a firewall
View 1 Replies
View Related
Jun 8, 2008
I have a script that makes a request via telnet and it worked on my old server, but not on the new one.. Heres what I'm doing
telnet localhost 80
GET /files/downloadFLV.php HTTP/1.1
Host: www.soybe.com
I get this back:
HTTP/1.1 404 Not Found
Date: Sun, 08 Jun 2008 06:34:25 GMT
Server: Apache
Last-Modified: Tue, 18 Mar 2008 06:52:59 GMT
I know that /files/downloadFLV.php does exist, so I'm thinking it could be an issue with the Host: part of it, any ideas?
View 1 Replies
View Related
Jun 23, 2005
if i try to telnet to yahoo's mail server, i get this:
[root: #] telnet mx1.mail.yahoo.com 25
Trying 4.79.181.14...
telnet: connect to address 4.79.181.14: Connection timed out
Trying 4.79.181.15...
telnet: connect to address 4.79.181.15: No route to host
Trying 67.28.113.11...
telnet: connect to address 67.28.113.11: No route to host
Trying 67.28.113.10...
telnet: connect to address 67.28.113.10: No route to host
but it works from one of my other hosted servers.
this keeps mail building up in my queue as it cannot send mail out cause the connection times out.
I can telnet locally to send myself email. This is my own dedicated server.
i have no idea whats up - default policy is ACCEPT in the OUTPUT chain of iptables.
View 3 Replies
View Related
Feb 10, 2015
I'm build Plesk Panel for Linux and Presence Builder, I don't want my user can upload their website to hosting via File Manager. How can I do it...
View 2 Replies
View Related
May 30, 2007
i am uploading a zip to show everyone one of my flash projects and to get feedback, i want to uplaod the original flash file along with the HTML page in a zip, would i just upload the zip file onto my server and then when you access that web page it asks you to download it or is there more to it?
View 6 Replies
View Related
Jan 28, 2009
I've just uploaded my website files onto the server, the website is working fine, but I'm not sure my files are 'arranged' right. I uploaded my images in a folder, but all the rest of the files are 'loose' along with the index file. If I go to either of my domain names, the website appears, which is ok for now, but I only really intended it to under one domain name, so there may be problems if I want another site up there. I think my files should be in a folder. Is this right? Should the index file be in the same folder, or should it be outside the folder with the links changed accordingly. I've been emailing my hosting service, and they 've been trying to help, but I feel a bit thick because I don't really understand what they're saying. Could someone tell me in very plain english how the files should be arranged?
View 11 Replies
View Related
Jun 23, 2009
i just bought php file management script, its running smoothly, the only problem was i cant upload big file ( > 1 Gigs ) using that script, then i ask the developer and he said it shouldnt be a problem since he sold that software before people and he never got a problem like that.
OS : Slamd64
apache 2.2.10
php 5.2.8
i tried to changed
post_max_size = 1900M
upload_max_filesize = 1500M
View 10 Replies
View Related
Dec 20, 2008
uploading some stuff to my servers, and it's going at about 50-60 kbps.
what would be a good service that could see my uploading speed rise to about 100-200 kbps?
I live in Canada, BC to be more specific
View 10 Replies
View Related
May 30, 2008
The Details:
XP Home, Verizon DSL, AVG, ZoneAlarm, CoffeeCup FTP, FileZilla FTP
So this all started about 5 days ago and I cannot think of anything that I did to associate this issue with. I'm very computer savvy and no one else uses this computer except for me (to help move things along faster). Essentially what happens when I start CoffeeCup FTP or FileZilla FTP (testing to make sure it wasn't just a problem with CoffeeCup FTP) and try to upload image files it fails, not the upload itself.. but somehow the image files are corrupt (no they're not CMYK, they're RGB). So it shows the file on my server, correct size, no error messages. However, when I go to the image URL it just shows the image URL where the image should be. I then restart CoffeeCup FTP and everything uploads properly. I've checked the lines on DSLReports.com, I've checked ZoneAlarm to make sure that I didn't somehow accidentally click no to something (which is unlikely). I keep my computer very clean and very organized and very up to date so it would be more helpful to me if someone could share some ideas of something that could happen that's not of my control. Could this possibly have anything to do with SP3 (the only thing I can recall being a change on my computer).
View 4 Replies
View Related
May 24, 2008
I have a flash swf that I use to upload files… however to get this to work on the server you have to do something like turn on shockwave uploading?… do you know what you need to do to upload using flash swf?
View 0 Replies
View Related
Jun 6, 2007
I've been using a Fedora Core 6 box to develop my site with PHP and MySQL. The web directory is /var/www/html.
I just recently bought my first hosting plan, and it says to upload my site to the Htdocs folder.
Is this a BSD server? I know nothing about BSD, and I'm worried, because I don't know if my site is going to need to be re-written. You see, some of my files, like the db connection script, are in /var/www/myfoldername ... Is there an equivalent on my new rented server, where I can put these files?
How about my databases? When I run the installer I wrote to create them, it just creates them, and FC6 has been doing what it will with them to get them working. Am I going to have issues connecting, because they're stored in a different dir?
View 2 Replies
View Related
Feb 25, 2008
we have been trying to import sql databases through cpanel.
The old server the client was on did not have any control panel. While the new server the client is migrating to, has cpanel. We try importing sql databases through cpanel, but because the sql databases are so large in size, they corrupt while importing them.
The client's old server he would be able to access all his sql databases through FTP.
While with this new cpanel server, we can't upload sql databases by FTP. We are wanting to use FTP because when using cpanel, the sql databases corrupt.
So is there anyway to upload sql databases with FTP directly into mysql when using cpanel server?
View 5 Replies
View Related
Apr 15, 2007
ive just token over my old hosts server as he had no time to run his hosting company so im a nOOb to the whole server management shell side of things, and im wondering if someone could help point me in the way of a tutorial on how to upload to the shell of the server, im trying to upload whm master reseller and some other cpanel addons,
View 1 Replies
View Related
Nov 9, 2009
Why is it that you can upload large file size when you are using FTP, but you cant upload large file size beyond the max when you are using browser to upload?
View 3 Replies
View Related
Jul 16, 2009
uploading my wordpress theme w/ Dreamhost. The zip file that I am attempting to host is too large for Dreamhost and I keep getting an error.
View 9 Replies
View Related