estoy instalando y todo bien hasta que tengo que poner la ruta de la carpeta DATA
,la cré fuera del directorio raiz como indican las instruciones por ejemplo si elgg está en
root/htdocs/elgg
la carpeta data esta en
root/htdocs/data
tambien la puse en root/data
y nada me dice que bien no existe o que no es un directorio valido
por favor alguien me podria ayudar gracias
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
lei esa que me dejas y alguna mas , y en todas recomiendad lo mismo no poner la carpets data en la misma de la instalación y creo que lo hice asi ,
Recomendamos que esta carpeta se llama "datos". Por razones de seguridad, esta carpeta se debe almacenar fuera de la raíz del documento. Por ejemplo, si Elgg está instalado en:
Es posible que desee crear la carpeta de datos en:
el servidor tiene root/htdocs/elgg en esa ruta está instalado el ELGG
el directorio data pone en el tutorial debe ir en
root/htdocs/data
o eso entendí yo , ,de no ser asi me podrias indicar como? ,gracias por tu respuesta
por favor me podrias explicar un poco más detallado
Your data directory /data does not exist.
Creo que es el path. De alguna manera el path no es el que aparece. Consulta con tu hosting company.
Rodolfo Hernandez
Arvixe/Elgg Community Liaison
despues de mucho mirar encontré la solución
en el directorio /htdocs/elgg/install abrir y editar el archivo Elgginstaller.php y borrar error y cambiar FALSE a TRUE
// check that data root exists
if (!file_exists($submissionVars['dataroot'])) {
$msg = elgg_echo('install:error:datadirectoryexists', array($submissionVars['dataroot']));
register_error($msg);
return FALSE;
}
}
// check that data root exists
if (!file_exists($submissionVars['dataroot'])) {
$msg = elgg_echo('install:datadirectoryexists', array($submissionVars['dataroot']));
register_error($msg);
return TRUE;
}
GRACIAS rjcalifornia Y Michele por vuestras respuestas
Jesus did you notify the developers of this error. I have been working all day trying to find a solution to this problem. Your advise above will work even in the middle of the Install process. Simply make the change you show above 'FALSE to TRUE and ftp the updated file. It works right in the middle of the install. Thank you for sharing this. I downloaded the latest version of elgg 1.9.4 and this error still exists in the Elgginstaller.php
Thank You
Paul