This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-09-17 03:05:59

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

(PHP) Social Connections Website!

http://scratchloveit.netne.net/topicrate.php?id=74907&ret=image&style=4http://plaxon.comyr.com/ip_finder.php

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!  smile

Last edited by wulfmaster (2011-09-17 09:18:38)


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#2 2011-09-17 03:20:21

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

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!  smile

I'd love to be a beta tester  smile  Also, the limit should be 5gb, or no one will use it.


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#3 2011-09-17 03:21:34

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

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!  smile

I'd love to be a beta tester  smile  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  smile
(Also, can I see the code for your siggy?  The PHP IP thing?)

Last edited by wulfmaster (2011-09-17 03:22:03)


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#4 2011-09-17 03:26:38

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

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);
?>

http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#5 2011-09-17 03:36:15

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

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!  smile 
Now I am going to see what evil things I can do to it!  wink


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#6 2011-09-17 03:36:58

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

So can I be a tester?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#7 2011-09-17 03:39:34

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

So can I be a tester?

Yep!   smile

Here's the very original site, when it was just going to be file sharing!
http://cyberkidscountry.com/upload.html


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#8 2011-09-17 03:43:13

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

Did you program that, and can I have the source? This may be really good for a html based website creator/uploader  smile


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#9 2011-09-17 03:46:31

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

Did you program that, and can I have the source? This may be really good for a html based website creator/uploader  smile

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"];
      }
    }
  }
?>

Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#10 2011-09-17 03:47:45

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

The view page source only shows hml, that's why i would like to actual code  smile


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#11 2011-09-17 03:50:08

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

The view page source only shows hml, that's why i would like to actual code  smile

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!  tongue   
However, it's easier using google chrome  smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#12 2011-09-17 03:50:27

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

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  smile

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!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#13 2011-09-17 03:52:42

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

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  smile

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!

tongue  Not a lot of scripting there  smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#14 2011-09-17 03:54:14

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

Thanks!I'm going to try to make a website builder now! I should be pretty easy!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#15 2011-09-17 03:56:52

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

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


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#16 2011-09-17 03:57:48

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

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!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#17 2011-09-17 03:58:50

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

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.php

Thanks!

What's the code for the new ip finder? And do u own cyperkidscountry?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#18 2011-09-17 04:00:27

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

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.php

Thanks!

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:

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);
?>

See?


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#19 2011-09-17 04:13:38

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

Cool! Your welcome to use that IP finder any time  smile


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#20 2011-09-17 04:14:19

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

Cool! Your welcome to use that IP finder any time  smile

Thanks!  smile  Notice my signature?


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#21 2011-09-17 04:15:32

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

Yea, it's really cool now! Do you own the cyberkids country website?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#22 2011-09-17 04:16:44

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

Yea, it's really cool now! Do you own the cyberkids country website?

Yep!  Yes I do!  smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#23 2011-09-17 04:22:58

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

Cool! I gtg now to make my website builder!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#24 2011-09-17 04:27:01

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: (PHP) Social Connections Website!

WindowsExplorer wrote:

Cool! I gtg now to make my website builder!

cool! > big_smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#25 2011-09-17 04:32:59

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: (PHP) Social Connections Website!

wulfmaster wrote:

WindowsExplorer wrote:

Cool! I gtg now to make my website builder!

cool! > big_smile

Do you know how to make a multiline html textbox?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

Board footer