[Bugs] [Bug 1262481] New: error mkdir from php
bugzilla at redhat.com
bugzilla at redhat.com
Fri Sep 11 20:40:23 UTC 2015
https://bugzilla.redhat.com/show_bug.cgi?id=1262481
Bug ID: 1262481
Summary: error mkdir from php
Product: GlusterFS
Version: 3.5.2
Component: scripts
Severity: high
Assignee: bugs at gluster.org
Reporter: t.aichinger at datamagic.at
CC: bugs at gluster.org, gluster-bugs at redhat.com
Description of problem:
PHP 5.6.1 can not create dir on glusterfs mount
Version-Release number of selected component (if applicable):
How reproducible:
create a web site on glusterfs mount and call php script that tries to create a
dir
Steps to Reproduce:
1. create a php file
<?php
$outdir = 'testdir';
mkdir($outdir, 0777, true);
if(is_dir($outdir) == true) {
echo "found";
}
else {
echo "not fond";
}
?>
2. put that on clusterfs mout
3. open it via apache http://
Actual results:
testdir does not exist
Expected results:
testdir should exist
Additional info:
tested with apache 2.4.10 and php 5.6.1
--
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
More information about the Bugs
mailing list