Post: How can I fix my Screensnapr?
04-07-2012, 12:21 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example:| :
You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});
04-07-2012, 01:13 AM #2
Pichu
RIP PICHU.
Originally posted by GrizzilyModz View Post
so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example:| :
You must login or register to view this content.


Site looks nice but I looked at the site source and what it seems to me is that it seems the image is not properly being uploaded.
04-07-2012, 01:15 AM #3
Alt
Banned
Originally posted by GrizzilyModz View Post
so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example:| :
You must login or register to view this content.


I'd go to your Snapr just to play that mouse game thing :fa:

The following user thanked Alt for this useful post:

xd366
04-07-2012, 01:32 AM #4
Just4Hax
"I will speak ill of
Originally posted by GrizzilyModz View Post
so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example:| :
You must login or register to view this content.

For one the name it gave is wrong...

You must login or register to view this content.

My guess is your php is off

Edit:
Just realized you don't have any php...
04-07-2012, 02:42 AM #5
Originally posted by Sublimity View Post
Site looks nice but I looked at the site source and what it seems to me is that it seems the image is not properly being uploaded.
So how can i fix it?
04-07-2012, 03:11 AM #6
Just4Hax
"I will speak ill of
Originally posted by GrizzilyModz View Post
So how can i fix it?

You need php. Something like this

    <?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 200000))
{
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 />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<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 "Stored in: " . "upload/" . $_FILES["file"]["name"];
}
}
}
else
{
echo "Invalid file";
}
?>


in one file, and this to ur index

    <?php
$img = $_GET["img"];
?>

<?php
if($img=="")
{
echo "";
}
else
{
echo "<img src='" . $img . "' />";
} ?>
04-07-2012, 06:40 AM #7
xd366
find me on twitter now
Originally posted by GrizzilyModz View Post
so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example:| :
You must login or register to view this content.



Originally posted by GrizzilyModz View Post
so i created my snapr and i capture and something but when i go the link it wont show the image. Heres an example :
iReset's Snapr


You must login or register to view this content.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo