make sure the port is "80"
also check the the "startup_apps.sh" file in Menu_Update\Apps_Setup\ folder in Share unit
# ========================================================= APACHE
echo "APACHE"
if [ "$APACHE" = "Y" ] && [ -f /mnt/apache/bin/apache ];
then
echo "on & apache ok"
PORT=`grep ADMIN_PORT /etc/config | cut -d"'" -f2`
[ "$PORT" -eq "80" ] && {
killall httpd
httpd -p 8080&
sed -i /ADMIN_PORT/s/.*/ADMIN_PORT=\'8080\'/ /etc/config
/etc/rc.d/save_config.sh
}
cp /mnt/Share/Menu_Update/Apps_Setup/php/index_apache.htm /mnt/www/Menu_Update/index.htm
cp /mnt/apache/conf/php.ini /lib/
/mnt/apache/bin/apache
else
echo "on but not apache"
killall apache
PORT=`grep ADMIN_PORT /etc/config | cut -d"'" -f2`
[ "$PORT" -eq "80" ] && {
killall httpd
httpd -p 8080&
sed -i /ADMIN_PORT/s/.*/ADMIN_PORT=\'8080\'/ /etc/config
/etc/rc.d/save_config.sh
}
cp /mnt/Share/Menu_Update/Apps_Setup/php/index_thttpd.htm /mnt/www/Menu_Update/index.htm
cp /mnt/Share/Menu_Update/thttpdwithphp /mnt
/mnt/thttpdwithphp -p 80 -d /mnt/www
fi
----------------------------------
replace the "8080" by "80"
關閉廣告