Code Monkey home page Code Monkey logo

Comments (3)

infostreams avatar infostreams commented on August 19, 2024

Are you sure it breaks the "normal" paths? I just tried it on my Mac here and with your fix it actually handles both cases without problems (with or without symlink). Which link breaks?

Also, thanks for this :-)

from mbtiles-php.

infostreams avatar infostreams commented on August 19, 2024

I replaced my code with yours. I tried to reproduced the problems you mention, but I couldn't. I tried using a symlink to 'tileserver.php' from a regular folder, and that worked, and I tried symlinking the whole folder, and that worked as well. I could even symlink a folder that contained a symlink to the tileserver.php, all without issues. What does your directory structure look like, and when/how does it break?

from mbtiles-php.

jbogdani avatar jbogdani commented on August 19, 2024

Hello,
I think that the main error I've getting is generated in the lines where $here and $document_root are defined.
The combination:
$here = str_replace("", "/", rtrim(dirname($_SERVER["SCRIPT_FILENAME"]), '/') . "/");
and
$document_root = str_replace("", "/", realpath($_SERVER["DOCUMENT_ROOT"]) . "/");

is not working for me (I can send you a private link if needed) because $document_root symlinks are resolved by realpath function.

Actually my solution was to remove this function from here. I'm actually using (successfully) in my different locations:

$here = str_replace("\\", "/", rtrim(dirname($_SERVER["SCRIPT_FILENAME"]), '/') . "/");
$document_root = str_replace("\\", "/", $_SERVER["DOCUMENT_ROOT"] . "/");

from mbtiles-php.

Related Issues (16)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.