Jump to content

[SOLVED] Trouble with Code


supermerc

Recommended Posts

Hey I have this code to upload profile pictures.

[code]<?
session_start();
$maxwidth = "250"; // Max width allowed for avatars
$maxheight = "250"; // Max height allowed for avatars

if (isset($_POST['uploadit'])) {
$filetype = $_FILES['userfile']['type'];
$filetypex = substr($filetype,0,5);

if ($filetypex == image) {
$newid = "userimage/";
$newid .= $_SESSION['s_username'];
$newid .= ".gif";


$mysock = getimagesize($_FILES['userfile']['tmp_name']);
$imagewidth = $mysock[0];
$imageheight = $mysock[1];
if ($imagewidth <= "$maxwidth" && $imageheight <= "$maxheight") {
if(!(copy($_FILES['userfile']['tmp_name'], $newid))) die("Cannot upload files.");
echo "Your New Avatar Has Been Created";

}
else {
echo "This avatar is to big, please change it";
}


}
else {
echo "This File Is Not a Image Fool";
}
}
else {
if(isset($_SESSION['s_logged_n']))
{
$s_username = $_SESSION['s_username'];
$session_username = $_SESSION['s_username'];
$filename = 'userimage/'.$s_username.'.gif';
if (file_exists($filename)) {
echo '<img src="'.$filename.'" border="1">';
}
else {
echo "You Do Not Have A Profile Picture";
}


?>
<form action="<?=$_SERVER['REQUEST_URI'] ?>" method="post" enctype="multipart/form-data">
Select a file <input type="file" name="userfile" size="18">
<br>
<input type="submit" value="Upload My Avatar" name="uploadit" size="18">

<br><br>
<i>All Files Will Be Converted To .gif

<?
}
else {
echo 'not logged in';
}
}
?>[/code]

When my users submit a profile picture, it creates the file correctly but it doesnt show up. Its supposed to show up because of echo '<img src="'.$filename.'" border="1">'; but even if the user has a profile picture uploaded it says there is none.

Link to comment
https://forums.phpfreaks.com/topic/31825-solved-trouble-with-code/
Share on other sites

Sure here you go

[code]<?php
session_start();
$maxwidth = "250"; // Max width allowed for avatars
$maxheight = "250"; // Max height allowed for avatars

if (isset($_POST['uploadit'])) {
$filetype = $_FILES['userfile']['type'];
$filetypex = substr($filetype,0,5);

if ($filetypex == image) {
$newid = "userimage/";
$newid .= $_SESSION['s_username'];
$newid .= ".gif";


$mysock = getimagesize($_FILES['userfile']['tmp_name']);
$imagewidth = $mysock[0];
$imageheight = $mysock[1];
if ($imagewidth <= "$maxwidth" && $imageheight <= "$maxheight") {
if(!(copy($_FILES['userfile']['tmp_name'], $newid))) die("Cannot upload files.");
echo "Your New Avatar Has Been Created";

}
else {
echo "This avatar is to big, please change it";
}


}
else {
echo "This File Is Not a Image Fool";
}
}
else {
if(isset($_SESSION['s_logged_n']))
{
$session_username = $_SESSION['s_username'];
$filename = 'userimage/'.$s_username.'.gif';
if (file_exists($filename)) {
echo '<img src="'.$filename.'" border="1">';
}
else {
echo "You Do Not Have An Avatar";
}


?>
<form action="<?=$_SERVER['REQUEST_URI'] ?>" method="post" enctype="multipart/form-data">
Select a file <input type="file" name="userfile" size="18">
<br>
<input type="submit" value="Upload My Avatar" name="uploadit" size="18">

<br><br>
<i>All Files Will Be Converted To .gif

<?php
}
else {
echo 'not logged in';
}
}
?>[/code]
emehrkay, it matters because of syntax highlighting on the forum.

Supermerc, try adding some debugging output to your script, such as printing out the filename you are testing for existence.  Also, if you have direct access to your files (through ftp or a web interface), take a look to see if the file is really there.

In particular I would use:

[code=php:0]echo "You Do Not Have An Avatar (looked for $filename)";[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.