We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The script make the new image directories in the ZenPhoto root, not in the /albums folder.
GAL_FS_ROOT = '/var/www/virtual/user/html/var/albums' ZEN_FS_ROOT = '/var/www/virtual/user/html/albums'
The new script mkdir directories are in /var/www/virtual/user/html
The text was updated successfully, but these errors were encountered:
fix:
final_dir_fullpath_fix = "albums/" + final_dir_fullpath if migrate_verbose == True: print("mkdir -p " + final_dir_fullpath_fix.encode('ascii', 'xmlcharrefreplace')) if not os.path.isdir(final_dir_fullpath_fix): os.makedirs(final_dir_fullpath_fix)
Please to consider the issue #3
Sorry, something went wrong.
No branches or pull requests
The script make the new image directories in the ZenPhoto root, not in the /albums folder.
GAL_FS_ROOT = '/var/www/virtual/user/html/var/albums'
ZEN_FS_ROOT = '/var/www/virtual/user/html/albums'
The new script mkdir directories are in
/var/www/virtual/user/html
The text was updated successfully, but these errors were encountered: