shit problem tuesday about permission

oke my first fucking problem is i can’t open file ex: index.php on the browser and give some internal server error then i check the file perm and group used, shit my user user other group called the group ‘devuser’ then i remove the group with edit file /etc/group then FUCK! the problem is still going. time after time i got some article about that … Continue reading shit problem tuesday about permission

solve internal 500 after move directory from another server (apache)

do this command on directory /var/www/html/ or your documentroot root@hostname# find * -type d -print0 | xargs -0 chmod 0755 # for directories root@hostname# find . -type f -print0 | xargs -0 chmod 0644 # for files or you can with this command too for file $ find /path/to/directory -type f -exec chmod 644 {} \; for directory $ find /path/to/directory -type d -exec chmod … Continue reading solve internal 500 after move directory from another server (apache)

Redshift for arch linux (red eyes)

aplikasi untuk mata agar tidak terkena cahaya biru, baik digunakan saat malam hari agar mata tidak mudah sakit. berikut cara installnya. $ sudo pacman -S redshift then how to use it? save this config file at ‘~/config/redshift.conf’ ; Global settings for redshift [redshift] ; Set the day and night screen temperatures temp-day=5700 temp-night=3500 ; Enable/Disable a smooth transition between day and night ; 0 will … Continue reading Redshift for arch linux (red eyes)

how to solve timeout when start httpd (arch linux)

today i got some problem? what the problem is fucking timeout when starting httpd, then i browse google for get some solution, then i got some solution, then this is the solution: my machine : Linux Private 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64 GNU/Linux ok now do this. $ sudo nano /etc/httpd/conf/httpd.conf then add this line at last line PidFile … Continue reading how to solve timeout when start httpd (arch linux)

How to solve proxmox timeout web-gui

Edit file hosts like this root@virtual:~# cat /etc/hosts 127.0.0.1 localhost.localdomain localhost 192.168.1.200 proxmox-1.200.proxmox.com proxmox-1-200 pvelocalhost edit file hostname like this root@proxmox-1-200:~# cat /etc/hostname proxmox-1-200 the solution is ‘proxmox-1-200’ change that with what you want. then reboot your server. just do it. Continue reading How to solve proxmox timeout web-gui

allow root remote access mysql / mariadb on centos6

edit file /etc/my.cnf.d/server.cnf [mariadb] bind-address = 0.0.0.0 like that then login to your mysql using root login server@remote $ mysql -u root -p mysql> GRANT ALL PRIVILEGES ON *.* TO ‘root’@’%’ IDENTIFIED BY ‘yourpasswordroot’ WITH GRANT OPTION; mysql> FLUSH PRIVILEGES server@remote # service mysql restart then do your fucking job. Continue reading allow root remote access mysql / mariadb on centos6