<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>24 Oct 2017 04:50:00 Z</lastBuildDate><pubDate>24 Oct 2017 04:50:00 Z</pubDate><description>I have come up with a bash install script that does the configuration on Debian Linux 8 as shown below. Testing the deployment, the TMP file is successfully written to the ftp_webdev directory. However, the deployment process is unable to read the file, even when I change the rights on the ftp_webdev directory to rwxrwxrwx and set up the umask permissions on vsftpd to write the file as rw_rw_rw_.&#13;
&#13;
Anyone have any ideas what I need to add or change? The error I receive is:&#13;
&#13;
INFValidating the password for WebDev account WEBSITE with TEMB5EA.tmp file Failure opening the fileTEMB5EA.tmp Unable to open file. System Error Details: No such file or directory ERRFTP FINCGI&#13;
&#13;
&#13;
Setup script follows&#13;
-----------------------------------------------&#13;
#!/bin/bash&#13;
&#13;
clear&#13;
&#13;
##&#13;
# make install scripts executable&#13;
##&#13;
&#13;
chmod +x /root/*64&#13;
&#13;
##&#13;
# update system and download and install webmin&#13;
##&#13;
&#13;
apt-get update &amp;&amp; apt-get -y dist-upgrade&#13;
apt-get -y install vsftpd libqtcore4 libqtgui4 libc6-dev libstdc++-4.9-dev zlib1g-dev ttf-mscorefonts-installer lynx build-essential lsb apache2 libapt-pkg-perl libauthen-pam-perl libio-pty-perl apt-show-versions sudo&#13;
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.860_all.deb&#13;
dpkg -i webmin_1.860_all.deb&#13;
&#13;
##&#13;
# modify the /etc/vsftpd.conf file&#13;
##&#13;
&#13;
sed -i 's/#write_enable=YES/write_enable=YES/' /etc/vsftpd.conf&#13;
sed -i 's/#local_umask=022/local_umask=022/' /etc/vsftpd.conf&#13;
echo "seccomp_sandbox=NO" &gt;&gt; /etc/vsftpd.conf&#13;
&#13;
##&#13;
# activate apache2 modules required by the WAS&#13;
##&#13;
&#13;
ln -s /etc/apache2/mods-available/actions.load /etc/apache2/mods-enabled/actions.load&#13;
ln -s /etc/apache2/mods-available/actions.conf /etc/apache2/mods-enabled/actions.conf&#13;
ln -s /etc/apache2/mods-available/cgid.load /etc/apache2/mods-enabled/cgid.load&#13;
ln -s /etc/apache2/mods-available/cgid.conf /etc/apache2/mods-enabled/cgid.conf&#13;
systemctl restart apache2.service&#13;
&#13;
##&#13;
# create required users, add to groups and make subdirectories for user who will own website&#13;
##&#13;
&#13;
useradd -m -s /bin/bash website&#13;
echo 'Create a password for the ""website"" account'&#13;
echo 'Be careful. If the two passwords entered do not match'&#13;
echo 'Then no password will be crated for the account'&#13;
passwd website&#13;
useradd webdevadmin&#13;
usermod -a -G www-data webdevadmin&#13;
usermod -a -G sudo website&#13;
usermod -a -G www-data website&#13;
usermod -a -G www-data root&#13;
mkdir /home/website/data&#13;
mkdir /home/website/site&#13;
mkdir /home/website/ftp_webdev&#13;
mkdir /home/website/webserviceREST&#13;
mkdir /home/website/webserviceSOAP&#13;
chown -R website:website /home/website/*&#13;
&#13;
##&#13;
# create required users, add to groups and make subdirectories for user who will own website&#13;
##&#13;
&#13;
/root/webdev_install_test64&#13;
/root/manta_install64&#13;
echo 'WAS Install Script Finished - Restarting Server'&#13;
reboot&#13;
&#13;
------------------------------------------------------------------------</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/63056-problem-debploying-website-64-bit-linux/read.awp</link><title>Problem debploying a website on 64 bit linux</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster></channel></rss>
