Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

<?php
    include("login.php");

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

    <title>FileStore - Upload Files</title>
    <link rel="stylesheet" href="./CSS/style.css" type="text/css" media="screen, projection" />
</head>

<body>

<div id="wrapper">

    <header id="header">


    <div id="header-content">
        <strong><h1>FileStore</h1></strong> Upload multiple files at once!
    </div>

    <div class="login-info" >

<?php



    if ($isLoggedin === false) {
        echo '  <form action="" method="POST">
                    Username: <input name="username" > 
                    Password: <input type="password" name="password" size="8">
                              <input type="submit" name="submit" value="Login">
                </form>';
        echo "<p align='right'>You are not logged in.</p>";
        echo "<b><a href='registration.php'>Register</a></b>";


    }else{  
        echo $welcomeMsg;
    }   
?>

    </div>


    </header

    <section id="middle" align="center">

        <div id="container">

        <br><br>
            <div id="content">
                <strong><h1>Upload files</h1></strong><br><br>

                <div id="upload-file" >



                <form action="" method='post' >             
                <select name="myDirs">
                <option value=""  selected="selected">Select a folder</option>
                </form>


<?php
include("dbConfig.php");
global $userid;
global $up_path;
global $sPath;
global $folder_path; 

$Username = $_SESSION["username"];


$sql = "SELECT UserID FROM users WHERE Username = '".$Username."'";

$result = mysql_query($sql) or die(mysql_error());

while($row = mysql_fetch_assoc($result)) {
   $userid = $row['UserID'];
}


$sPath = realpath("./files/" . $userid . "/");

if (!file_exists($sPath)) {


            mkdir($sPath, 0777, true);
            chmod($sPath, 0777);

}


if (chdir($sPath)) {

$iterator = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($sPath, RecursiveDirectoryIterator::SKIP_DOTS), RecursiveIteratorIterator::SELF_FIRST);

foreach($iterator as $file) {

    if($file->isDir()) {

            echo '<option value="'.$file.'">'.$file."</option>\n";



                        }

                        }                   

                    }       

?>


<form action="" method='post'>
                    <input type='text' name='newDir' >      
                    <input type='submit' name="create" value='Create'>
                    <input type='submit' name ="delete" value='Delete'>
                </form>     


<?php

@$selected_path = $_POST["myDirs"];
@$newDir = $_POST["newDir"];


if(isset($_REQUEST['create'])) {

    $folder_path =  $selected_path . "/" . $newDir . "/" ;

    if (!file_exists($folder_path)) {


                mkdir($folder_path, 0777, true);
                chmod($folder_path, 0777);


                echo "Folder " . $newDir . " created in " . $selected_path;

                echo $folder_path;


                 header('Location: '.$_SERVER['REQUEST_URI']);

        } else {

        echo "Error creating " . $newDir;


        }

}
else if(isset($_REQUEST['delete'])) {


    $folder_handler = dir($selected_path);
    while ($file = $folder_handler->read()) {
        if ($file == "." || $file == "..")
            continue;
        unlink($selected_path.'/'.$file);

        }


       $folder_handler->close();
       rmdir($selected_path);

      header('Location: '.$_SERVER['REQUEST_URI']);


}




?>

        </div>

            </div>
        </div>

        <aside id="sideLeft">

            <div id="menu-x" align="center"><br>
            <strong>Menu</strong><br><br>

                    <div class="menu">
                        <ul>
                        <li><a href="index.php">Home</a></li>
                        <li><a href="upload.php">Upload</a></li>
                        <li><a href="files.php">Files</a></li>
                        <li><a href="folders.php">Folders</a></li>
                        <li><a href="about.php">About</a></li>
                        <li><a href="help.php">Help</a></li>
                        <?php if($isLoggedin === true){ ?>
                        <li><a href="logout.php">Logout</a></li>
                        <?php } ?>
                        </ul>
                        <br style="clear:left"/>
                    </div>

            </div>


        </aside>

    </section>

    <footer id="footer">
        <strong>FileStore:</strong> A CMT 3315 Project by Brian Livori
    </footer>

</div>

</body>
</html>

As of a few hours ago, it was working perfectly, I did not touch anything and for some reason it's not working.

The script should list all files in a drop down menu (if any) and once the user enters text int the textbox and hits the 'Create' button a folder should be created in ../files/$userid/

Can anyone tell me whats going on or what the problem is?

I am using the latest version of XAMPP with MySQL and PHP.

I have tried loading them on different XAMPP installations and computers, with the same problem. I checked the project folder to see if read/write permission where correct and they where. I also check my connection to MySQL through dbConfig but there was no error. I tried logging in with a different user to no avail.

share|improve this question
2  
A big chunk of code, without a detailed error description, without what you have tried to find the bug and without details of your hosting environment (no error messages because they are disabled?)... chances of getting a helpful answer are bad. – Desty Jan 16 at 17:48
The mysql_* functions are deprecated. Use either PDO or MySQLi! – Jordi Kroon Jan 16 at 17:49
@Desty You are right. I updates the question. – Brian Jan 16 at 17:50
Did you tried to put error_reporting(E_ALL) on top of your script? – Jordi Kroon Jan 16 at 17:53
Note: Please sanitize variables like $_POST["newDir"] before using them. Currently anyone can create any directory by changing the POST request. – Anne Jan 16 at 17:56
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.