Important: Please modify the IIS5 + PHP + MYSQl and PWS + PHP + MYSQL environments. during debugging, my machine had a tmp directory on the disk running php, so there was no accident, some netizens wrote that the PWS environment cannot run because SyntaxHighlighter may be running on a disk running php in windows.
Important: modify the IIS5 + PHP + MYSQl and PWS + PHP + MYSQL environments.
During debugging, my machine had the tmp directory on the disk where php was running, so there was no accident. some netizens wrote that PWS cannot run in the environment because of this, in windows, the tmp directory may not exist on the disk where php is running, and the directory "/tmp /~ Userfile/"is not successful, and an error is prompted. You can set $ userfiletmp = "/tmp /~ Userfile /~ Tmp. inc ";
Change
$ Userfiletmp = "/tmp /~ Tmp. inc ";
Or modify the following statement in the file index0.php "if ($ step = 3) {":
If (! File_exists (dirname ($ userfiletmp ))){
Mkdir (dirname ($ userfiletmp), 0700 );
}
Become
If (! File_exists ("tmp ")){
Mkdir ("tmp"), 0700 );
}
If (! File_exists (dirname ($ userfiletmp ))){
Mkdir (dirname ($ userfiletmp), 0700 );
}
You can.