Tagged Questions
The realpath tag has no wiki summary.
2
votes
2answers
362 views
C: realpath() without resolving symlinks?
I already read about realpath(), but is there a function that I can pass a base directory and a filename that would give me the following result without resolving symlinks or checking whether files ...
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 ...
2
votes
4answers
5k views
How can I get real path for file in my WebContent folder?
I need to get real path for file in my WebContent directory, so that framework that I use can access that file. It only takes String file as attribute, so I need to get the real path to this file in ...
2
votes
2answers
387 views
casting issue with realpath function (c programming)
When I compile the following code:
#define _POSIX_C_SOURCE 200112L
#define _ISOC99_SOURCE
#define __EXTENSIONS__
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
int
...
2
votes
3answers
4k views
Example of realpath function (C Programming)
I'm looking for an example of how to use the realpath function in a C program. I can't seem to find one on the web or in any of my C programming books.
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
0answers
65 views
cannot upload file in uber drupal
I've just moved my uberdrupal to new host and get this message:
warning: realpath() [function.realpath]: SAFE MODE Restriction in effect. The script whose uid is 696 is not allowed to access /tmp ...
0
votes
1answer
105 views
How to corelate glibc and “libc” versions?
The man page for realpath on my Linux box says:
VERSIONS
On Linux this function appeared in libc 4.5.21.
Now what does that mean? To which libc is it referring - "Linux libc"? - and where ...
0
votes
1answer
211 views
Trying to use image from URL with Kohana Image class
I'm trying to use an image from a URL with Kohana image class. http://kohanaframework.org/3.0/guide/api/Image
Is this possible or does the image always have to be local to the project?
I'm accessing ...
0
votes
4answers
120 views
How to get directory of a file which is called from command line argument?
For example, I am calling my executable in ubuntu:
./foo temp/game1.txt temp/game2 txt
I am using realpath() to find the path to the game1.txt.
Using it however will give me the full path including ...
0
votes
1answer
271 views
How to fetch actual web resource source file path in java?
I have developed java application which is actually stored at d drive.I have imported that application into eclipse which is stored at C drive.
In my application there is one folder named as 'Image'.
...
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
1answer
419 views
How can I remove relative path components but leave symlinks alone in Perl?
I need to get Perl to remove relative path components from a Linux path. I've found a couple of functions that almost do what I want, but:
File::Spec->rel2abs does too little. It does not ...
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
84 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.