Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

ツ

Não faz upload de imagem

Recommended Posts

Estou com um problema que meu site não quer atualiza a imagem ele não envia imagem pra pasta

obs: ele tá com chmod777

	<?
function delete_file($name)
	{
		if (file_exists($name))
		   unlink($name);
	}
	
	if ($_GET['send']=='1')
	{
		session_start();
	
		$filename = "../upload/" . uniqid("").tmp;
		
		$ext = strrchr($HTTP_POST_FILES["file"]["name"], '.');
		move_uploaded_file($HTTP_POST_FILES["file"]["tmp_name"], $filename);
		
		/*if ($ext=='.gif')
		{
			passthru("gif2png -O -d ../upload/". $filename);
			$filename = $filename . ".png";
			$img = @imagecreatefrompng($filename);
		}
		else*/ if($ext=='.jpg' && filesize($filename)<300832)
			$img = @imagecreatefromjpeg($filename);
		else
		{
		   delete_file($filename);
		   header('Location: upload.php?cm='. $_GET['cm'] .'&error=Only .jpg files smaller than 300kb are allowed&refresh='. uniqid(""));
		   die();
		}

		if (strlen($_GET['cm'])>0)
		{
			delete_file('c_'. $_GET['cm'].'.jpg');
			delete_file('c_'. $_GET['cm'].'_m.jpg');
		}
		else
		{
			delete_file($_SESSION['id'].'.jpg');
			delete_file($_SESSION['id'].'_m.jpg');
		}
		
		$size = getimagesize($filename);
		$width= $size[0];
		$height= $size[1];
		
		if ($width>128)
		{
			$percentage = 128 / $width;
			$width *= $percentage;
			$height *= $percentage;
			
			$img_r = imagecreatetruecolor ($width, $height);
			imagecopyresampled($img_r, $img, 0, 0, 0, 0, $width, $height, $size[0], $size[1]);
		}
		else
		{
			$img_r = $img;
		}
		
		if ($width>64)
		{
			$percentage = 64 / $width;
			$width *= $percentage;
			$height *= $percentage;
		}
		$img_sm = imagecreatetruecolor($width, $height);
		imagecopyresampled($img_sm, $img, 0, 0, 0, 0, $width, $height, $size[0],  $size[1]);
		
		if (strlen($_GET['cm'])>0)
		{
			ImageJpeg($img_r, "../upload/c_". $_GET['cm'] . ".jpg", 100);
			ImageJpeg($img_sm, "../upload/c_". $_GET['cm'] . "_m.jpg", 100);
		}
		else
		{
			ImageJpeg($img_r, "../upload/". $_SESSION['id'] . ".jpg", 100);
			ImageJpeg($img_sm, "../upload/". $_SESSION['id'] . "_m.jpg", 100);
		}
		
		delete_file($filename);
		
	   header('Location: upload.php?cm='. $_GET['cm'] .'&refresh='. uniqid(""));
	   die();
	}
	
	require("../include/pre.php");	// all the basic stuff
	require("../include/stringtools.php");
	
	draw_top($topic_message);	//starts drawing the page
?>
<table width=100% cellpadding="0" cellspacing="0">
<tr>
	<td align="center" valign="top" width="100%">
		<?
		draw_frame_top("Picture Upload");
		?>
				<table width="100%">
				<form method="post" action="upload.php?send=1"  enctype="multipart/form-data">
				<tr>
					<td width="15%" valign="top">
						<table width=180 cellspacing=0 cellpadding=0>
						<tr><td align="center">
						<?
						show_system_messages();
						
						if (strlen($_GET['cm'])>0)
							draw_community_picture($_GET['cm']);
						 else
							draw_user_picture($_SESSION['id']);
						
						echo "<br><br>";
						
						if (strlen($_GET['cm'])>0)
							draw_community_small_picture($_GET['cm']);
						 else
							draw_user_small_picture($_SESSION['id']);
						?>
						</td></tr>
						</table>
					</td>
					<td width="85%" valign="top">
					<?
						draw_small_frame_top((strlen($_GET['cm'])>0 ? " Community Picture" :"User Picture"), "mini_smile");
					?>
						<table width="100%">
						<tr>
							<td width="10%" valign="top" align="right">
								<b>File:</b><br>
							</td>
							<td width="90%">
								<input type="file" name="file" size=30>
							</td>
						</tr>
						<tr>
							<td></td>
							<td align="left">
								<input type="submit" value="Update Picture"> 
							</td>
						</tr>
						</table>
						<br>
						<table width="80%" align="center" bgcolor="#FFFFCC" style="border: 1px solid #bbbbbb">
						<tr>
							<td align="center"><b>Important:</b> Only .jpg files smaller than 300kb are allowed.<br>
								If the pictures aren't correct after the upload try pressing <b>CTRL+F5</b>
							</td>
						</tr>
						</table>
					<?
						draw_small_frame_bottom();
					?>
					</td>
				</tr>
				</form>
				</table>
		<?
		draw_frame_bottom();
		?>
	</td>
</tr>
</table>
<?
	draw_bottom();
?>

 

Compartilhar este post


Link para o post
Compartilhar em outros sites
Agora, washalbano disse:

Desde o php 4.1 que  não se deve mais usar essas variáveis.

image.png.ad20acc44eb058b4282b338e526bbacf.png

meu php e 5.6 Obrigadoo me ajudou bastante nem percebi

Compartilhar este post


Link para o post
Compartilhar em outros sites

  • Conteúdo Similar

    • Por violin101
      Caros amigos, saudações.
       
      Por favor, me permita tirar uma dúvida com os amigos.

      Tenho um Formulário onde o Usuário digita todos os Dados necessários.

      Minha dúvida:
      --> como faço após o usuário digitar os dados e salvar, o Sistema chamar uma Modal ou mensagem perguntando se deseja imprimir agora ?

      Grato,
       
      Cesar
    • Por Carcleo
      Tenho uma abela de usuarios e uma tabela de administradores e clientes.
      Gostaria de uma ajuda para implementar um cadastro
       
      users -> name, login, passord (pronta) admins -> user_id, registratiom, etc.. client -> user_id, registratiom, etc...
      Queria ajuda para extender de user as classes Admin e Client
      Olhem como estáAdmin
      <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Admin extends User {     use HasFactory;            protected $fillable = [         'name',         'email',         'password',         'registration'     ];      private string $registration;     public function create(         string $name,          string $email,          string $password,         string $registration     )     {         //parent::create(['name'=>$name, 'email'=>$email, 'password'=>$password]);         parent::$name = $name;         parent::$email = $email;         parent::$password = $password;         $this->registration = $registration;     } } User
      <?php namespace App\Models; // use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Illuminate\Database\Eloquent\Relations\BelongsToMany; class User extends Authenticatable {     /** @use HasFactory<\Database\Factories\UserFactory> */     use HasFactory, Notifiable;     static string $name;     static string $email;     static string $password;     /**      * The attributes that are mass assignable.      *      * @var list<string>      */     protected $fillable = [         'name',         'email',         'password',     ];          /**      * The attributes that should be hidden for serialization.      *      * @var list<string>      */     protected $hidden = [         'remember_token',     ];     /**      * Get the attributes that should be cast.      *      * @return array<string, string>      */     protected function casts(): array     {         return [             'email_verified_at' => 'datetime',             'password' => 'hashed',         ];     }          public function roles() : BelongsToMany {         return $this->belongsToMany(Role::class);     }       public function hasHole(Array $roleName): bool     {                 foreach ($this->roles as $role) {             if ($role->name === $roleName) {                 return true;             }         }         return false;     }         public function hasHoles(Array $rolesName): bool     {                 foreach ($this->roles as $role) {             foreach ($rolesName as $rolee) {             if ($role->name === $rolee) {                 return true;             }          }         }         return false;     }         public function hasAbility(string $ability): bool     {         foreach ($this->roles as $role) {             if ($role->abilities->contains('name', $ability)) {                 return true;             }         }         return false;     }     } Como gravar um Admin na tabela admins sendo que ele é um User por extensão?
      Tentei assim mas é claro que está errado...
      public function store(Request $request, Admin $adminModel) {         $dados = $request->validate([             "name" => "required",             "email" => "required|email",             "password" => "required",             "registration" => "required"         ]);         $dados["password"] =  Hash::make($dados["password"]);                  $admin = Admin::where("registration",  $dados["registration"])->first();                  if ($admin)              return                    redirect()->route("admin.new")                             ->withErrors([                                 'fail' => 'Administrador já cadastrados<br>, favor verificar!'                   ]);                            $newAdmin = $adminModel->create(                                    $dados['name'],                                    $dados['email'],                                    $dados['password'],                                    $dados['registration']                                 );         dd($newAdmin);         $adminModel->save();         //$adminModel::create($admin);                  return redirect()->route("admin.new")->with("success",'Cadastrado com sucesso');     }  
    • Por violin101
      Caros amigos, saudações.
       
      Gostaria de tirar uma dúvida com os amigos, referente a PDV.
       
      Estou escrevendo um Sistema com Ponto de Vendas, a minha dúvida é o seguinte, referente ao procedimento mais correto.

      Conforme o caixa vai efetuando a venda, o Sistema de PDV já realiza:
      a baixa direto dos produtos no estoque
      ou
      somente após concretizar a venda o sistema baixa os produtos do estoque ?
       
      Grato,
       
      Cesar
       
    • Por violin101
      Caros amigos do grupo, saudações e um feliz 2025.
       
      Estou com uma pequena dúvida referente a Teclas de Atalho.

      Quando o Caps Lock está ativado o Comando da Tecla de Atalho não funciona.
      ou seja:
      se estiver para letra minúscula ====> funciona
      se estiver para letra maiúscula ====> não funciona
       
      Como consigo evitar essa falha, tanto para Letra Maiúscula quanto Minúscula ?

      o Código está assim:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'r' ) return;// Não é Ctrl+r, portanto interrompemos o script evt.preventDefault(); });  
      Grato,
       
      Cesar
    • Por violin101
      Caros amigos, saudações.
       
      Por favor, poderiam me ajudar.

      Estou com a seguinte dúvida:
      --> como faço para para implementar o input código do produto, para quando o usuário digitar o ID o sistema espera de 1s a 2s, sem ter que pressionar a tecla ENTER.

      exemplo:
      código   ----   descrição
           1       -----   produto_A
       
      Grato,
       
      Cesar
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.