Hi
I have one form and the following code:
when I save this code I get
Forbidden
You don't have permission to access /administrator/index2.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
The code is on Form Code
My files index.php and index.php have permissions 644
Any help, please? (Maybe a permission problem)
I have one form and the following code:
$db =& JFactory::getDBO();
$query = "select * from clientes";
$db->setQuery($query);
$destino = $db->loadResult();
if ( $destino ) {
$row = $db->loadRow();
$nome=$row[2];
}
when I save this code I get
Forbidden
You don't have permission to access /administrator/index2.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
The code is on Form Code
My files index.php and index.php have permissions 644
Any help, please? (Maybe a permission problem)