Jump to content

mtb211

Members
  • Posts

    50
  • Joined

  • Last visited

    Never

About mtb211

  • Birthday 10/27/1983

Profile Information

  • Gender
    Male
  • Location
    tennenbronn germany

mtb211's Achievements

Member

Member (2/5)

0

Reputation

  1. ah so hes just being lazy I bet.... so its not vital that i update .... it would make everything easier... Im running plesk 7.4 and theres no auto update and people are telling me to contact my server admin. thx for all the input guys
  2. Hi, Basically im new to php ... ive read online you really should update to php 5 but I asked the guy that we run the server from and he refuses to update to php 5(says theres not a difference) is this total bs? thanks Matt
  3. Hi I was wondering if there a very effiecent and simple file manangement software for php that is free? I was using logman but Ive had some bugs... I want to have a log in screen that logs a user into their database folder so they can download files I upload Thanks! MaTT
  4. thanks a lot... I just got into my plesk server.... so I should of used p2pmyadmin... thanks!
  5. Hi! My work is closed today and I wanted to log into Plesk from my home computer but it wont allow me to.. I dont understand why. I want to create a database on my localhost... is there some way to do this so it will be Plesk compatible? I have a pc at work and Im working on my laptop at the moment... thanks in advance!
  6. Thank you everyone for the quick responses! Ive found the books move too slow for more.. The echo hello world etc... a senior devolper said online tutorials are far the best.. everyone concur with that?
  7. um have you set chmod to 777 ... sometimes that helps
  8. thx for the help I guess its one little syntax problem somewhere anyone else has an idea it would be great matt
  9. ahhh it did not work either hmm.. got the same exact error basically erstell is locted in website/kunden and the other directory is website/kunden/muster actually ftp would be website/httpdocs/kunden
  10. here is my error Warning: mkdir(qwa): File exists in /var/www/vhosts/punktewolke.de/httpdocs/kunden/erstell.php on line 20 Warning: copy(kunden/$dir/index.php): failed to open stream: No such file or directory in /var/www/vhosts/punktewolke.de/httpdocs/kunden/erstell.php on line 55 failed to copy ... here is the code to the whole file, sorry I didnt post this earlier <html> <head> <title>Unbenanntes Dokument</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php $dir = $uname; $user = $_POST['user']; $pass = $_POST['pass']; // Aktuelles Verzeichnis ermitteln $thisdir = str_replace(strrchr($_SERVER['SCRIPT_FILENAME'],'/'), '', $_SERVER['SCRIPT_FILENAME']); // Gewünschtes Verzeichnis erstellen $oldumask = umask(0); mkdir($dir,0777); umask($oldumask); // Daten für .htaccess erstellen $htaccess = 'AuthType Basic AuthUserFile '.$thisdir.'/'.$dir.'/.htpasswd AuthName "Enter user name and password please!" order deny,allow allow from all require valid-user'; // Daten für .htpasswd erstellen $htpasswd = $uname.':'.crypt($pw, substr(md5(uniqid(rand())), 0, 2)); // Testdatei erstellen (wird angezeigt beim erfolgreichen Login) /* $handle = fopen($dir.'/index.php', 'w'); fwrite($handle, ' <? echo "Hier sind die Bereitgestellten Dateien<br><br>"; $action=opendir("./"); while($datei=readdir($action)){ if(!preg_match("!(\.|\..)$!", $datei)){ if ($datei!="index.php" && $datei!=".htaccess" && $datei!=".htpasswd" ) { echo " <a href=\"$datei\"> $datei</a><br>"; } } } ?>'); fclose($handle); // .htaccess erstellen $handle = fopen($dir.'/.htaccess', 'w'); fwrite($handle, $htaccess); fclose($handle); */ if (!copy('kunden/muster/index.php', $dir.'/index.php')) { echo ("failed to copy $file...<br>\n"); } // .htpasswd erstellen $handle = fopen($dir.'/.htpasswd', 'w'); fwrite($handle, $htpasswd); fclose($handle); ?> </body> </html>
  11. if (!copy('kunden/muster/index.php', $dir.'/index.php')) { echo ("failed to copy $file...<br>\n"); } ive looked at different snippets but this code isnt working.. any idea?
  12. I am basically using a log in screen so my users can log into their secured folders(using htaccess,pwrd). I have an individual link for each user ie www.pointcloud.com/kunden/matt " "joe " "dingle" is there a way I can set the htaccess login popup to //kunden and when the user enters their name it will direct them to the correct folder? thank you... here is my code if it helps <html> <head> <title>Unbenanntes Dokument</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php $dir = $uname; $user = $_POST['user']; $pass = $_POST['pass']; // Aktuelles Verzeichnis ermitteln $thisdir = str_replace(strrchr($_SERVER['SCRIPT_FILENAME'],'/'), '', $_SERVER['SCRIPT_FILENAME']); // Gewünschtes Verzeichnis erstellen $oldumask = umask(0); mkdir($dir,0777); umask($oldumask); // Daten für .htaccess erstellen $htaccess = 'AuthType Basic AuthUserFile '.$thisdir.'/'.$dir.'/.htpasswd AuthName "Enter user name and password please!" order deny,allow allow from all require valid-user'; // Daten für .htpasswd erstellen $htpasswd = $uname.':'.crypt($pw, substr(md5(uniqid(rand())), 0, 2)); // Testdatei erstellen (wird angezeigt beim erfolgreichen Login) $handle = fopen($dir.'/index.php', 'w'); fwrite($handle, ' <? echo "Hier sind die Bereitgestellten Dateien<br><br>"; $action=opendir("./"); while($datei=readdir($action)){ if(!preg_match("!(\.|\..)$!", $datei)){ if ($datei!="index.php" && $datei!=".htaccess" && $datei!=".htpasswd" ) { echo " <a href=\"$datei\"> $datei</a><br>"; } } } ?>'); fclose($handle); // .htaccess erstellen $handle = fopen($dir.'/.htaccess', 'w'); fwrite($handle, $htaccess); fclose($handle); // .htpasswd erstellen $handle = fopen($dir.'/.htpasswd', 'w'); fwrite($handle, $htpasswd); fclose($handle); ?> </body> </html> if you want to tell me why this code sucks, feel free Matt
  13. Im not sure if I fully understand you... do you mean create a login php page? And it should work? ive researched everywhere and it doesnt seem like I can create a login with my existing secure folders using htaccess everything says create a database ... I know this is safer but i need to create a login for my existing folders... Ive been trying to figure this out for a week now, Im becoming frustrated. Anything else I can do?
  14. Hi, Currently I have a website with not much content on it.... www.punktewolke.de there is a link that says kunden klick here... when you click it will ask send you to user matts folder with htaccess login is there a way I can set it up so when a user enters his name it will direct him to the correct folder? thanks! Matt
  15. Hi, Currently I have 30 different links for 30 different customers which asks for a user name and password via the default IE login screen I want to create a php or html page with a login screen and when the user enters his name and password it will direct them to the correct folder. Does anyone know a snippet of code that I could use? Or what exactly I need to search for? thanks! Mb
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.