Here we are:
<textarea> Test. Should work :S </textarea>
Offline
wulfmaster wrote:
Here we are:
Code:
<textarea> Test. Should work :S </textarea>
Thank you!
Offline
You're welcome!
Offline
this isn't really a misc topic because it is about web programming. i think it should go in advanced topics. oh and i would like to beta test it!
Offline
nathanprocks wrote:
this isn't really a misc topic because it is about web programming. i think it should go in advanced topics. oh and i would like to beta test it!
This isn't really going to be all code and stuff, this is for talking about the actual product, plus there is a thread in advanced about this that is the coding.
Offline
gbear605 wrote:
nathanprocks wrote:
this isn't really a misc topic because it is about web programming. i think it should go in advanced topics. oh and i would like to beta test it!
This isn't really going to be all code and stuff, this is for talking about the actual product, plus there is a thread in advanced about this that is the coding.
Yes, this
Offline
Who's helping develop this site?
Me (Wulfmaster)
Gbear605
LS97
and Rookwood101
Offline
I could be a betatester, it sounds like a really cool site

Offline
Cool. Thanks! I'll contact you when there's something to see!
Offline
fire219 wrote:
wulfmaster wrote:
Who's helping develop this site?
Me (Wulfmaster)
Gbear605
LS97
and Rookwood101![]()
Me.
![]()
Yes. and this guy ^^
Just haven't added you to the list
Anyway, BUMP
Offline
bump!
Offline
lol u used my like button design
oh and btw can i try ur upload code on my site because i copied code from w3schools and it didn't work
Offline
nathanprocks wrote:
lol u used my like button design
oh and btw can i try ur upload code on my site because i copied code from w3schools and it didn't work
![]()
lol. I used that exact code.
Offline
wulfmaster wrote:
nathanprocks wrote:
lol u used my like button design
oh and btw can i try ur upload code on my site because i copied code from w3schools and it didn't work
![]()
lol. I used that exact code.
![]()
yeah i realised that after i looked at it... the problem is it says it can't move the file to another location... i will get the exact message later because i can't access CDAF (http://cassiedragonandfriends.org/ this is not my web... i have a subdomain) on this network.
Edit: i tried code from another website but that didn't work either...
Last edited by nathanprocks (2011-09-23 03:01:56)
Offline
ssss wrote:
As I use my own host, I believe that yours may be because you are using a service? Or something.
i'm hosting it on GPG's site. When i try to upload a file it says the following:
Upload: Hello.bat Type: application/octet-stream Size: 0.0625 Kb Warning: move_uploaded_file(uploads/Hello.bat) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpzSXs5Z' to 'uploads/Hello.bat' in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 The link to your file is: http://carrot.cassiedragonandfriends.org/uploads/Hello.bat
Offline
nathanprocks wrote:
ssss wrote:
As I use my own host, I believe that yours may be because you are using a service? Or something.
i'm hosting it on GPG's site. When i try to upload a file it says the following:
Code:
Upload: Hello.bat Type: application/octet-stream Size: 0.0625 Kb Warning: move_uploaded_file(uploads/Hello.bat) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpzSXs5Z' to 'uploads/Hello.bat' in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 The link to your file is: http://carrot.cassiedragonandfriends.org/uploads/Hello.bat
I had this error too,
<?php
{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
if (file_exists("/home/cassiedr/public_html/carrot/experiments/upload/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"/home/cassiedr/public_html/carrot/experiments/upload/" . $_FILES["file"]["name"]);
echo "http://carrot.cassiedragonandfriends.org/experiment/upload/" . $_FILES["file"]["name"];
}
}
}
?>Your problem, is that you are tryinng to upload to somewhere it can't find, you need to use the expanded link, like in this. I think you can figure this out
Last edited by gbear605 (2011-09-23 06:13:31)
Offline
gbear605 wrote:
nathanprocks wrote:
ssss wrote:
As I use my own host, I believe that yours may be because you are using a service? Or something.
i'm hosting it on GPG's site. When i try to upload a file it says the following:
Code:
Upload: Hello.bat Type: application/octet-stream Size: 0.0625 Kb Warning: move_uploaded_file(uploads/Hello.bat) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpzSXs5Z' to 'uploads/Hello.bat' in /home/cassiedr/public_html/carrot/experiments/upload.php on line 20 The link to your file is: http://carrot.cassiedragonandfriends.org/uploads/Hello.batI had this error too,
Code:
<?php { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; if (file_exists("/home/cassiedr/public_html/carrot/experiments/upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "/home/cassiedr/public_html/carrot/experiments/upload/" . $_FILES["file"]["name"]); echo "http://carrot.cassiedragonandfriends.org/experiment/upload/" . $_FILES["file"]["name"]; } } } ?>Your problem, is that you are tryinng to upload to somewhere it can't find, you need to use the expanded link, like in this. I think you can figure this out
![]()
so is that the fixed code right?...
Offline
ssss wrote:
It has to be in this sort of directory:
Upload_File.php inside .../(Var)
.../(Var)/uploads.
Is that what you've done?
ur confusing me now... i copied my code from another website... it SHOULD work!!!
Offline