Forum » Izdelava spletišč » XAMPP - access forbiden
XAMPP - access forbiden
nokaut240 ::
Imam to kodo:
Ko stisnem gumb submit, mi napiše
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
localhost
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3
Sem pogooglal o tem pa mi tiste rešitve ne pomagajo.
<html>
<head>
<title>Add News</title>
<meta http-equiv="Content-Type" content="text/html; charset="iso"-8859-1">
</head>
<body>
<?
if(isset($add_n)){
$link = @mysql_connect(localhost, username, password);
if(!$link){
echo('Error connecting to the database: ' . $mysql_error());
exit();
}
$db = @mysql_selectdb('mydatabase');
if(!$db){
echo('Error selecting database: ' . $mysql_error());
exit();
}
$query = "INSERT INTO news(name, email, headline, story, timestamp)VALUES('$name', '$email', '$headline', '$story', NOW())";
$result = @mysql_query($query);
if(!$result){
echo('Error adding news: ' . $mysql_error());
exit();
}else{
mysql_close($link);
echo('Success!<br><a href="add.php">Click here</a> to add more news.<br><a href="edit.php">Click here</a> to edit news.<br><a href="../index.php">Click here</a> to return to the main page.');
}
}else{
?>
<form name="form1" method="post" action="<? echo $PHP_SELF; ?>">
<table width="50%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%">Name</td>
<td><input name="name" type="text" id="name"></td>
</tr>
<tr>
<td>Email</td>
<td><input name="email" type="text" id="email"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Headline</td>
<td><input name="headline" type="text" id="headline"></td>
</tr>
<tr>
<td>News Story</td>
<td><textarea name="story" id="story"></textarea></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input name="hiddenField" type="hidden" value="add_n">
<input name="add" type="submit" id="add" value="Submit">
</div></td>
</tr>
</table>
</form>
<? } ?>
</body>
</html> Ko stisnem gumb submit, mi napiše
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
localhost
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3
Sem pogooglal o tem pa mi tiste rešitve ne pomagajo.
roko granata ::
Na serverju imaš nameščeno skoraj najnovejšo verzijo PHP-ja. Poizkusi z uporabo izboljšanje verzije podaljška za MySQL - http://php.net/manual/en/book.mysqli.php.
Razlika je v i-ju, ki ga dodaš funkcijam (mysqli_()). V določenih primerih pa je zamenjan tudi vrstni red parametrov.
Razlika je v i-ju, ki ga dodaš funkcijam (mysqli_()). V določenih primerih pa je zamenjan tudi vrstni red parametrov.