Jump to content

Deftone

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

Everything posted by Deftone

  1. Dear, I'm on the shared hosting. I think that's the problem is that I'm the ftp user and I don't have permission  to rename files. But how to change the user? Iknow that php knows two users php and ftp I chmod the files already to 777 but it's not helping.
  2. I chmod throug SSH all the files to 777 So I dont think it's the permission issue I also call the webhost but they said that it's the script that couses the problem
  3. Ok maybe I'm a littlebit futher. Now when I try to upload something I get this error: [code]Warning: rename(../uploads/,../fotos/317.jpg) [function.rename]: Permission denied in /home/knr11315/domains/kimi-raikkonen.nl/public_html/plaatjes/toevoegen.php on line 40 [/code] The line 40 in the php script is like this: [code]rename("$map$bestand2", "$mapa$aaa");[/code] What is wrong with this one ?
  4. Hi Ken, I try to make it work but it did not worked. I'm to new in this world to fix it.
  5. By the way this is the last script that don't work. The other I get fixed with help from this forum
  6. Yeah good question. Becouse My new host only have PHP5  ;)
  7. Hi, Again I'm going to ask foryor help.  :'( I have script that give me the possibility to upload the foto's to my gallery. Since PHP 5 this script is not working. When I fill all the info the fields turns blank but nothing happens Can you help me again ? [code]<?php include ('_mySQL.php'); if ($toevoegen == "ja") { if ($pwd == "$pass") { $database_server = mysql_connect("$host","$user","$pass"); mysql_select_db("$database", $database_server); mysql_connect("$host","$user","$pass"); mysql_select_db("$database"); $query = "SELECT id FROM plaatjes ORDER BY id DESC LIMIT 0, 1"; //Select $resultaat = mysql_query($query) or die ("Het ophalen van de gegevens is mislukt."); while ($record = mysql_fetch_object($resultaat)) { $beschikbaar = $record->id + 1; } $map = "../uploads/"; $mapa = "../fotos/"; //uploaden // Bestands naam opvragen $bestand2 = explode("\\", $bestand_name); $laatste = count($bestand2) - 1; $bestand2 = "$bestand2[$laatste]"; //$bestand2 = "$beschikbaar.jpg"; $aaa = "$beschikbaar.jpg"; // Save file copy($bestand, "$map$bestand2"); print ("De afbeelding is met succes geupload.<br>"); //Rename rename("$map$bestand2", "$mapa$aaa"); echo "De afbeelding is met succes hernoemd.<br><br>"; $bestand = "$thumbnail"; $map = "../uploads/"; $mapa = "../thumbnails/"; //uploaden // Bestands naam opvragen $bestand2 = explode("\\", $bestand_name); $laatste = count($bestand2) - 1; $bestand2 = "$bestand2[$laatste]"; //$bestand2 = "$beschikbaar.jpg"; $aaa = "$beschikbaar.jpg"; // Save file copy($bestand, "$map$bestand2"); print ("De thumbnail is met succes geupload.<br>"); //rename rename("$map$bestand2", "$mapa$aaa"); echo "De thumbnail is met succes geupload.<br><br>"; [/code]
  8. Thank you thank you thank you Problem solved. You can close this topic.  ;) ;) ;) ;) ;) ;) ;) ;)
  9. Yes. I use this two [code]<html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face=\"Arial\" size=\"2\"> <form action=\"race.php\" enctype=multipart/form-data> <input type=\"hidden\" name=\"toevoegen\" value=\"ja\"> Wachtwoord:<br> <input type=\"password\" size=\"30\" name=\"pwd\"><br> Circuit:<br> <input type=\"text\" size=\"30\" name=\"race\" value=\"$race\"><br> Jaar:<br> <input type=\"text\" size=\"30\" name=\"jaar\" value=\"$jaar\"><br> Plaats:<br> <input type=\"text\" size=\"30\" name=\"plaats\"><br> Coureur:<br> <input type=\"text\" size=\"30\" name=\"coureur\"><br> Team:<br> <input type=\"text\" size=\"30\" name=\"team\"><br> Tijd / reden uitval:<br> <input type=\"text\" size=\"30\" name=\"tijd\"><br> Gefinished: <b>ja / nee</b><br> <input type=\"text\" size=\"30\" name=\"finish\" value=\"$finish\"><br> <input type=\"submit\" value=\"Verzenden\"> <input type=\"reset\" value=\"Invoer wissen\"> </form> </body> </html> "; } else { ?> <html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face="Arial" size="2"> <form action="race.php" method="post"> <input type="hidden" name="toevoegen" value="ja"> Wachtwoord:<br> <input type="password" size="30" name="pwd"><br> Circuit:<br> <input type="text" size="30" name="race"><br> Jaar:<br> <input type="text" size="30" name="jaar"><br> Plaats:<br> <input type="text" size="30" name="plaats"><br> Coureur:<br> <input type="text" size="30" name="coureur"><br> Team:<br> <input type="text" size="30" name="team"><br> Tijd / reden uitval:<br> <input type="text" size="30" name="tijd"><br> Gefinished: <b>ja / nee</b><br> <input type="text" size="30" name="finish"><br> <input type="submit" value="Verzenden"> <input type="reset" value="Invoer wissen"> </form> </body> </html>[/code]
  10. I don't know where to search
  11. Ok I did that but stil nothing get into the DB The only thing i get above the page is [code]Array ( [toevoegen] => ja [pwd] => ***** [race] => Duitsland [jaar] => 2006 [plaats] => 1 [coureur] => T.Test [team] => Renault [tijd] => 1:22:22:234 [finish] => ja )[/code]
  12. Here you go [code] <?php include ('_mySQL.php'); if ($toevoegen == "ja"); if ($pwd == "$pass"); if($_POST['submit']){ //Toevoegen //Connect $database_server = mysql_connect("$host","$user","$pass") or die(mysql_error()); mysql_select_db("$database", $database_server) or die(mysql_error()); if ($plaats == "1"){ $plaats = "  1"; } else { } if ($plaats == "2"){ $plaats = "  2"; } else { } if ($plaats == "3"){ $plaats = "  3"; } else { } if ($plaats == "4"){ $plaats = "  4"; } else { } if ($plaats == "5"){ $plaats = "  5"; } else { } if ($plaats == "6"){ $plaats = "  6"; } else { } if ($plaats == "7"){ $plaats = "  7"; } else { } if ($plaats == "8"){ $plaats = "  8"; } else { } if ($plaats == "9"){ $plaats = "  9"; } else { } //Data insert mysql_query("INSERT INTO race VALUES ('" . $_POST["plaats"] . "', '" . $_POST["coureur"] . "', '" . $_POST["team"] . "', '" . $_POST["tijd"] . "', '" . $_POST["finish"] . "', '" . $_POST["race"] . "', '" . $_POST["jaar"] . "')"); echo( mysql_error() ); //Geef weer dat het is gelukt echo "Gegevens toegevoegd!"; echo " <html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face=\"Arial\" size=\"2\"> <form action=\"race.php\" enctype=multipart/form-data> <input type=\"hidden\" name=\"toevoegen\" value=\"ja\"> Wachtwoord:<br> <input type=\"password\" size=\"30\" name=\"pwd\"><br> Circuit:<br> <input type=\"text\" size=\"30\" name=\"race\" value=\"$race\"><br> Jaar:<br> <input type=\"text\" size=\"30\" name=\"jaar\" value=\"$jaar\"><br> Plaats:<br> <input type=\"text\" size=\"30\" name=\"plaats\"><br> Coureur:<br> <input type=\"text\" size=\"30\" name=\"coureur\"><br> Team:<br> <input type=\"text\" size=\"30\" name=\"team\"><br> Tijd / reden uitval:<br> <input type=\"text\" size=\"30\" name=\"tijd\"><br> Gefinished: <b>ja / nee</b><br> <input type=\"text\" size=\"30\" name=\"finish\" value=\"$finish\"><br> <input type=\"post\" value=\"Verzenden\"> <input type=\"reset\" value=\"Invoer wissen\"> </form> </body> </html> "; } else { ?> <html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face="Arial" size="2"> <form action="race.php"> <input type="hidden" name="toevoegen" value="ja"> Wachtwoord:<br> <input type="password" size="30" name="pwd"><br> Circuit:<br> <input type="text" size="30" name="race"><br> Jaar:<br> <input type="text" size="30" name="jaar"><br> Plaats:<br> <input type="text" size="30" name="plaats"><br> Coureur:<br> <input type="text" size="30" name="coureur"><br> Team:<br> <input type="text" size="30" name="team"><br> Tijd / reden uitval:<br> <input type="text" size="30" name="tijd"><br> Gefinished: <b>ja / nee</b><br> <input type="text" size="30" name="finish"><br> <input type="submit" value="Verzenden"> <input type="reset" value="Invoer wissen"> </form> </body> </html> <?php } ?> [/code]
  13. I got this: Array ( )
  14. I did that but again anly empty fields. Guys once again I really apriciate your help. You are great
  15. Again no mysql error's Only fields that turns blanc by hpushing the submit button. I have to tel you that I changed the script becouse of the problem. First my script looked like that [code] <?php include ('_mySQL.php'); if ($toevoegen == "ja"){ if ($pwd == "$pass") { //Toevoegen //Verbinding maken $database_server = mysql_connect("$host","$user","$pass"); mysql_select_db("$database", $database_server); if ($plaats == "1"){ $plaats = "  1"; } else { } if ($plaats == "2"){ $plaats = "  2"; } else { } if ($plaats == "3"){ $plaats = "  3"; } else { } if ($plaats == "4"){ $plaats = "  4"; } else { } if ($plaats == "5"){ $plaats = "  5"; } else { } if ($plaats == "6"){ $plaats = "  6"; } else { } if ($plaats == "7"){ $plaats = "  7"; } else { } if ($plaats == "8"){ $plaats = "  8"; } else { } if ($plaats == "9"){ $plaats = "  9"; } else { } //Gegevens invoeren mysql_query("INSERT INTO race (plaats, coureur, team, tijd, finish, race, jaar) VALUES ('$plaats', '$coureur', '$team', '$tijd', '$finish', '$race', '$jaar')"); //Geef weer dat het is gelukt echo "Gegevens toegevoegd!"; echo " <html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face=\"Arial\" size=\"2\"> <form action=\"race.php\" enctype=multipart/form-data> <input type=\"hidden\" name=\"toevoegen\" value=\"ja\"> Wachtwoord:<br> <input type=\"password\" size=\"30\" name=\"pwd\"><br> Circuit:<br> <input type=\"text\" size=\"30\" name=\"race\" value=\"$race\"><br> Jaar:<br> <input type=\"text\" size=\"30\" name=\"jaar\" value=\"$jaar\"><br> Plaats:<br> <input type=\"text\" size=\"30\" name=\"plaats\"><br> Coureur:<br> <input type=\"text\" size=\"30\" name=\"coureur\"><br> Team:<br> <input type=\"text\" size=\"30\" name=\"team\"><br> Tijd / reden uitval:<br> <input type=\"text\" size=\"30\" name=\"tijd\"><br> Gefinished: <b>ja / nee</b><br> <input type=\"text\" size=\"30\" name=\"finish\" value=\"$finish\"><br> <input type=\"submit\" value=\"Verzenden\"> <input type=\"reset\" value=\"Invoer wissen\"> </form> </body> </html> "; } } else { ?> [/code]
  16. register_globals are off. Also magic_quotes are off register_globals = Off register_argc_argv = Off register_long_arrays = Off magic_quotes_gpc = Off enable_dl = Off
  17. I did what you both say but I not getting any error mysql error. The fields only goes blank and that's it. [code]mysql_query("INSERT INTO race VALUES ('" . $_POST["plaats"] . "', '" . $_POST["coureur"] . "', '" . $_POST["team"] . "', '" . $_POST["tijd"] . "', '" . $_POST["finish"] . "', '" . $_POST["race"] . "', '" . $_POST["jaar"] . "')") or die(mysql_error());[/code] When I look into the DB there is no new info  :'(
  18. Hi, Thanks for your reply. I just changed the webhost. They are using php5 and mysql5 I had to make some chnges on my site and the only thing that's not working is to put info into the database. I can get the info from the db on my frontpage but not into the db. I don't get eny error. When I fill my form the fields go blanc and there isno insert in to the db
  19. Hallo, I'm new here and also in PHP world. Few daysago I go from php4 en mysql4 to php5 and mysql5 but now I can not insert info into the database. Can someone tell me where i did wrong? [code] <?php include ('_mySQL.php'); if ($toevoegen == "ja"); if ($pwd == "$pass"); if($_POST['submit']){ //Toevoegen //Connect $database_server = mysql_connect("$host","$user","$pass"); mysql_select_db("$database", $database_server); if ($plaats == "1"){ $plaats = "  1"; } else { } if ($plaats == "2"){ $plaats = "  2"; } else { } if ($plaats == "3"){ $plaats = "  3"; } else { } if ($plaats == "4"){ $plaats = "  4"; } else { } if ($plaats == "5"){ $plaats = "  5"; } else { } if ($plaats == "6"){ $plaats = "  6"; } else { } if ($plaats == "7"){ $plaats = "  7"; } else { } if ($plaats == "8"){ $plaats = "  8"; } else { } if ($plaats == "9"){ $plaats = "  9"; } else { } //Data insert mysql_query("INSERT INTO 'race' VALUES ('" . $_POST["plaats"] . "', '" . $_POST["coureur"] . "', '" . $_POST["team"] . "', '" . $_POST["tijd"] . "', '" . $_POST["finish"] . "', '" . $_POST["race"] . "', '" . $_POST["jaar"] . "')"); //Geef weer dat het is gelukt echo "Gegevens toegevoegd!"; echo " <html> <head> <title>Race-uitslag toevoegen</title> </head> <body> <font face=\"Arial\" size=\"2\"> <form action=\"race.php\" enctype=multipart/form-data> <input type=\"hidden\" name=\"toevoegen\" value=\"ja\"> Wachtwoord:<br> <input type=\"password\" size=\"30\" name=\"pwd\"><br> Circuit:<br> <input type=\"text\" size=\"30\" name=\"race\" value=\"$race\"><br> Jaar:<br> <input type=\"text\" size=\"30\" name=\"jaar\" value=\"$jaar\"><br> Plaats:<br> <input type=\"text\" size=\"30\" name=\"plaats\"><br> Coureur:<br> <input type=\"text\" size=\"30\" name=\"coureur\"><br> Team:<br> <input type=\"text\" size=\"30\" name=\"team\"><br> Tijd / reden uitval:<br> <input type=\"text\" size=\"30\" name=\"tijd\"><br> Gefinished: <b>ja / nee</b><br> <input type=\"text\" size=\"30\" name=\"finish\" value=\"$finish\"><br> <input type=\"submit\" value=\"Verzenden\"> <input type=\"reset\" value=\"Invoer wissen\"> </form> </body> </html> "; } else { ?> [/code] When I submit the news the info is not going to the database. When I did that in php4 and mysql4 I got no problems
×
×
  • 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.