Tagged Questions
2
votes
3answers
1k views
Replace PHP's realpath()
Apparently, realpath is very buggy. In PHP 5.3.1, it causes random crashes.
In 5.3.0 and less, realpath randomly fails and returns false (for the same string of course), plus it always fails on ...
1
vote
4answers
130 views
PHP autoload problem when running as a cronjob
I have the following file structure:
cron.php
/includes/functions.php
/classes/ClassName.php
corn.php includes functions.php calls new ClassName(). And functions.php contains the primitive ...
1
vote
1answer
151 views
php realpath not producing usable outcome
<?php
$server = $_SERVER["SERVER_NAME"];
$pathpath = realpath("../../files/uploaded_file.jpg");
echo "You can link to the file using the following link... $server$pathpath";
?>
...
1
vote
1answer
342 views
Get realpath of uploaded file
I need to get the aboslute path of a file uploaded by the user in PHP. How can I do that? Im doing this cause I need to post the information to an API via cURL
0
votes
1answer
82 views
realpath returns empty string
I use MediaWiki but there is an error. I found it in the files. There is line with this code:
$IP = realpath( '.' );
But $IP returns an empty string, so the path to the files in the system is not ...
0
votes
2answers
235 views
PHP realpath('./models') returns “” or null?
When I try
realpath('./')
I get "D:\Projects\Tickle\public"
But when I try
realpath('./models'); // or './models/'
I get "" or null. why is that? The strange thing is that when I try
...
0
votes
2answers
412 views
Realpath not working with ../files?
I am developing under wamp.
echo realpath(APPPATH);
C:\wamp\www\salsaritmo\system\application
echo realpath(APPPATH . '..');
C:\wamp\www\salsaritmo\system
echo realpath(APPPATH . '../files'); ...
0
votes
5answers
326 views
RealPath safe?
<?php
if (preg_match('/^[a-z0-9]+$/', $_GET['p'])) {
$page = realpath('pages/'.$_GET['p'].'.php');
$tpl = realpath('templates/'.$_GET['p'].'.html');
if ($page && $tpl) {
include $page;
...
0
votes
2answers
2k views
How can I tune the PHP realpath cache?
Recent versions of PHP have a cache of filenames for knowing the real path of files, and require_once() and include_once() can take advantage of it.
There's a value you can set in your php.ini to set ...
-5
votes
1answer
85 views
What is the difference between dirname(__FILE__) and realpath(dirname(__FILE__))? [closed]
Can anyone tell me what is the difference between dirname(__FILE__) and realpath(dirname(__FILE__))?
Thank you!
Note: Both produce the same results.