Corinne Posted May 21, 2006 Share Posted May 21, 2006 Hi,I'm trying to locate my local path for file uploading. I use php and MySql on a Mac, running MacOS 10.3, and using this machine as my staging server.How can I find my local path? Can it be a permission problem? I have tried User/me/and so on and it does not work.Thanks in advance,Corinne Link to comment https://forums.phpfreaks.com/topic/10147-local-path-on-mac/ Share on other sites More sharing options...
neylitalo Posted May 21, 2006 Share Posted May 21, 2006 If I understand correctly, you're asking about your home directory - check in /home/your_user_name. Link to comment https://forums.phpfreaks.com/topic/10147-local-path-on-mac/#findComment-37803 Share on other sites More sharing options...
Corinne Posted May 21, 2006 Author Share Posted May 21, 2006 Yes, I have written /home/myusername/Sites/mysitename/images/ and I also tried /Users/myusername etc and the file that is in tmp-dir. won't move to that. Either the path is wrong or permission is wrong. What kind of permissions may there be?Thanks![!--quoteo(post=375888:date=May 22 2006, 01:14 AM:name=neylitalo)--][div class=\'quotetop\']QUOTE(neylitalo @ May 22 2006, 01:14 AM) [snapback]375888[/snapback][/div][div class=\'quotemain\'][!--quotec--]If I understand correctly, you're asking about your home directory - check in /home/your_user_name.[/quote] Link to comment https://forums.phpfreaks.com/topic/10147-local-path-on-mac/#findComment-37806 Share on other sites More sharing options...
neylitalo Posted May 21, 2006 Share Posted May 21, 2006 OK, can you give a few more details on what you're trying to do? Link to comment https://forums.phpfreaks.com/topic/10147-local-path-on-mac/#findComment-37808 Share on other sites More sharing options...
Corinne Posted May 21, 2006 Author Share Posted May 21, 2006 I want to upload a file in the image-folder:$nameoffile=basename($_FILES['imagefile']['name']);$file_dir="/Users/myname/Sites/mysite/images/";if size and type is OK (which it is) then:move_uploaded_file($_FILES['imagefile']['tmp_name'], $file_dir.$nameoffile) or die ("filen laddas inte".$file_dir.$nameoffile);I hope I copied the code correctly now, but when it dies I can see that the directory seems correct, and I have no idea why it all dies... Now I need some sleep, but I'll check your answer tomorrow of course! Thank you very much! Link to comment https://forums.phpfreaks.com/topic/10147-local-path-on-mac/#findComment-37822 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.