Correct permissions for Drupal on ClearOS virtual host
Run these commands
[root@]cd /path_to_drupal_installation
[root@]chown -R root:apache .
[root@]find . -type d -exec chmod u=rwx,g=rx,o= {} \;
[root@]find . -type f -exec chmod u=rw,g=r,o= {} \;
ClearOS PHP GD Library and ImageMagick
Run these commands from the command prompt:
#yum install php-gd
#yum install ImageMagick
#service httpd restart
Print Spooler won't start due to dependancy service or group not starting
Had this problem with the Epson Advanced Drivers for POS. Pushed the CPU usage to 50%. Could not uninstall or fix due to dependency issues. Ran this on the command prompt to remove print spooler dependency, rebooted the PC and could then uninstall and reinstall the Epson drivers:
net stop spooler
sc config spooler depend= rpcss start= auto
net start spooler