Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problema recién instalado con la clase blackListClass #14

Open
Davidgl1987 opened this issue Oct 25, 2017 · 0 comments
Open

Problema recién instalado con la clase blackListClass #14

Davidgl1987 opened this issue Oct 25, 2017 · 0 comments

Comments

@Davidgl1987
Copy link

Hola, he intentado probar el código del proyecto y me ha dado el siguiente error:

Warning: SimpleXMLElement::__construct(): I/O warning : failed to load external entity "xml/blacklist.xml" in C:\wamp\www\Automatic-API-REST\inc\blackListClass.php on line 97

Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML' in C:\wamp\www\Automatic-API-REST\inc\blackListClass.php on line 97

Por lo visto, hay un error en ese archivo, el cual he solucionado sustituyendo la línea 97 de esto:

$doc = new SimpleXMLElement('xml/blacklist.xml', null, true);

a esto:

$doc = new SimpleXMLElement(file_get_contents('xml/blacklist.xml'));

al parecer no puede acceder al archivo únicamente con el string de la ruta, por lo que el método file_get_contents le proporciona lo necesario a SimpleXMLElement para que pueda crear su nueva instancia.

Espero que a las personas que les haya ocurrido les solucione el problema como a mi.

Un saludo y enhorabuena por el proyecto, es una gran idea que puede ahorrar un montón de tiempo de código.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant