Hi, I guess you are wondering what my titles all about, right? Well, this project I am working on will bring many communities together, while not being a social community on it's own. This site will increase the functionality of the internet, while making sure that it's monitored.
This site will add file uploading capabilities, and will try and decrease the amount of ad's you see. I believe what could be possible is that the downloads pages will not include advertisements, but other pages will. Other things which I may add are possibilities to change what people see your page as! That way, you have customisability over this nice, little feature. Another feature is that it has only 1gb upload in total per account, and each account is 1 per person.
I am currently thinking about other features the site will include, including whether or not it's possible to add the 'Facebook chatbar' at the bottom of every page, but with the choice to turn it off in the 'User Options' page.
So, what do you think about this project so far?
If you want to become a developer for this, Click here
If you want to become a BETA tester for this, please tell me why!
Last edited by wulfmaster (2011-09-17 09:18:38)
Offline
wulfmaster wrote:
Hi, I guess you are wondering what my titles all about, right? Well, this project I am working on will bring many communities together, while not being a social community on it's own. This site will increase the functionality of the internet, while making sure that it's monitored.
This site will add file uploading capabilities, and will try and decrease the amount of ad's you see. I believe what could be possible is that the downloads pages will not include advertisements, but other pages will. Other things which I may add are possibilities to change what people see your page as! That way, you have customisability over this nice, little feature. Another feature is that it has only 1gb upload in total per account, and each account is 1 per person.
I am currently thinking about other features the site will include, including whether or not it's possible to add the 'Facebook chatbar' at the bottom of every page, but with the choice to turn it off in the 'User Options' page.
So, what do you think about this project so far?
If you want to become a developer for this, Click here
If you want to become a BETA tester for this, please tell me why!![]()
I'd love to be a beta tester
Also, the limit should be 5gb, or no one will use it.
Offline
WindowsExplorer wrote:
wulfmaster wrote:
Hi, I guess you are wondering what my titles all about, right? Well, this project I am working on will bring many communities together, while not being a social community on it's own. This site will increase the functionality of the internet, while making sure that it's monitored.
This site will add file uploading capabilities, and will try and decrease the amount of ad's you see. I believe what could be possible is that the downloads pages will not include advertisements, but other pages will. Other things which I may add are possibilities to change what people see your page as! That way, you have customisability over this nice, little feature. Another feature is that it has only 1gb upload in total per account, and each account is 1 per person.
I am currently thinking about other features the site will include, including whether or not it's possible to add the 'Facebook chatbar' at the bottom of every page, but with the choice to turn it off in the 'User Options' page.
So, what do you think about this project so far?
If you want to become a developer for this, Click here
If you want to become a BETA tester for this, please tell me why!![]()
I'd love to be a beta tester
Also, the limit should be 5gb, or no one will use it.
Hmm... I'll see what I can manage. You see, at the moment I use a paid host online, but I am saving up for a pc good enough to host my own web server
(Also, can I see the code for your siggy? The PHP IP thing?)
Last edited by wulfmaster (2011-09-17 03:22:03)
Offline
Here's the code, I made it myself!
<?php
header("Content-type: image/png");
$string = "Your IP is " . $_SERVER['REMOTE_ADDR'];
$im = imagecreatefrompng("http://plaxon.comyr.com/images/button.PNG");
$color = imagecolorallocate($im, 88, 88, 88);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
$py = 9;
$fontSize = 5;
imagestring($im, fontSize, $px, $py, $string, $color);
imagepng($im);
imagedestroy($im);
?>Offline
WindowsExplorer wrote:
Here's the code, I made it myself!
Code:
<?php header("Content-type: image/png"); $string = "Your IP is " . $_SERVER['REMOTE_ADDR']; $im = imagecreatefrompng("http://plaxon.comyr.com/images/button.PNG"); $color = imagecolorallocate($im, 88, 88, 88); $px = (imagesx($im) - 7.5 * strlen($string)) / 2; $py = 9; $fontSize = 5; imagestring($im, fontSize, $px, $py, $string, $color); imagepng($im); imagedestroy($im); ?>
Thank you!
Now I am going to see what evil things I can do to it!
Offline
WindowsExplorer wrote:
So can I be a tester?
Yep!
Here's the very original site, when it was just going to be file sharing!
http://cyberkidscountry.com/upload.html
Offline
Did you program that, and can I have the source? This may be really good for a html based website creator/uploader
Offline
WindowsExplorer wrote:
Did you program that, and can I have the source? This may be really good for a html based website creator/uploader
![]()
hehehe. All you have to do is view page source but OK:
HTML PAGE: (upload.html)
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <br> <label for="file">Press to upload:</label><input type="file" name="file" id="file" /> <br> <input type="submit" name="submit" value="Submit" /> <br /> </form> </body> </html>
PHP CODE: (upload_file.php)
<?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("upload/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"upload/" . $_FILES["file"]["name"]);
echo "The link to your file is: " . "www.cyberkidscountry.com/upload" . $_FILES["file"]["name"];
}
}
}
?>Offline
The view page source only shows hml, that's why i would like to actual code
Offline
WindowsExplorer wrote:
The view page source only shows hml, that's why i would like to actual code
![]()
Lol, as the file is linked, all you would have had to do is go to www.cyberkidscountry.com/upload_file.php to find the source code!
However, it's easier using google chrome
Offline
wulfmaster wrote:
WindowsExplorer wrote:
Did you program that, and can I have the source? This may be really good for a html based website creator/uploader
![]()
hehehe. All you have to do is view page source but OK:
HTML PAGE: (upload.html)Code:
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <br> <label for="file">Press to upload:</label><input type="file" name="file" id="file" /> <br> <input type="submit" name="submit" value="Submit" /> <br /> </form> </body> </html>PHP CODE: (upload_file.php)
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("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "The link to your file is: " . "www.cyberkidscountry.com/upload" . $_FILES["file"]["name"]; } } } ?>
Cool!
Offline
WindowsExplorer wrote:
wulfmaster wrote:
WindowsExplorer wrote:
Did you program that, and can I have the source? This may be really good for a html based website creator/uploader
![]()
hehehe. All you have to do is view page source but OK:
HTML PAGE: (upload.html)Code:
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <br> <label for="file">Press to upload:</label><input type="file" name="file" id="file" /> <br> <input type="submit" name="submit" value="Submit" /> <br /> </form> </body> </html>PHP CODE: (upload_file.php)
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("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "The link to your file is: " . "www.cyberkidscountry.com/upload" . $_FILES["file"]["name"]; } } } ?>Cool!
Not a lot of scripting there
Offline
Thanks!I'm going to try to make a website builder now! I should be pretty easy!
Offline
WindowsExplorer wrote:
Thanks!I'm going to try to make a website builder now! I should be pretty easy!
I know, that's another feature this site should include! (Oh yeah, I modified your IP detector, so it looks better:
Offline
wulfmaster wrote:
WindowsExplorer wrote:
Thanks!I'm going to try to make a website builder now! I should be pretty easy!
I know, that's another feature this site should include! (Oh yeah, I modified your IP detector, so it looks better:
http://cyberkidscountry.com/ip.php
Thanks!
Offline
WindowsExplorer wrote:
wulfmaster wrote:
WindowsExplorer wrote:
Thanks!I'm going to try to make a website builder now! I should be pretty easy!
I know, that's another feature this site should include! (Oh yeah, I modified your IP detector, so it looks better:
http://cyberkidscountry.com/ip.phpThanks!
What's the code for the new ip finder? And do u own cyperkidscountry?
Offline
WindowsExplorer wrote:
WindowsExplorer wrote:
wulfmaster wrote:
I know, that's another feature this site should include! (Oh yeah, I modified your IP detector, so it looks better:
http://cyberkidscountry.com/ip.phpThanks!
What's the code for the new ip finder? And do u own cyperkidscountry?
Yep, and the code is exactly the same! lol. I just formatted the text to move it over a little:
<?php
header("Content-type: image/png");
$string = " Your IP is " . $_SERVER['REMOTE_ADDR'];
$im = imagecreatefrompng("http://plaxon.comyr.com/images/button.PNG");
$color = imagecolorallocate($im, 88, 88, 88);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
$py = 9;
$fontSize = 5;
imagestring($im, fontSize, $px, $py, $string, $color);
imagepng($im);
imagedestroy($im);
?>See?
Offline
WindowsExplorer wrote:
Cool! Your welcome to use that IP finder any time
![]()
Thanks!
Notice my signature?
Offline
Yea, it's really cool now! Do you own the cyberkids country website?
Offline
WindowsExplorer wrote:
Yea, it's really cool now! Do you own the cyberkids country website?
Yep! Yes I do!
Offline
WindowsExplorer wrote:
Cool! I gtg now to make my website builder!
cool! >
Offline
wulfmaster wrote:
WindowsExplorer wrote:
Cool! I gtg now to make my website builder!
cool! >
![]()
Do you know how to make a multiline html textbox?
Offline