Hello,
I'm trying to set up a Mailing List Manager that will allow people to sign on and subscribe to different email lists. I have created the necessary tables in my MySQL database but when I try to upload an email to the Mailing List I get the following message in my browser:
Warning: mkdir() failed (No such file or directory) in /home/serve/fun4nick/PHP/egroup/upload.php on line 78
Here is the line of code referred to:
// it is a problem if creating the specific directory for this mail fails
if(!mkdir("archive/$list/$mailid", 0700))
The entire PHP file is attached below.
There is no "archive" directory and the other two in the path are just variables. Does this archive get created by the code, do I have to create it, or something else?
Thanks in advanced for any help
Andy