Archive for the ‘Uncategorized’ Category.
22nd May 2017, 02:43 pm
You face this problem when you log in to the admin page. This usually happens when you make changes to plugin/theme.
Sorry, you are not allowed to access this page. |
Sorry, you are not allowed to access this page.
I have spent quite a fair amount of time trying to troubleshooting this and it seems that some database has been changed resulting in this problem.
1) Go to phpMyAdmin
2) Look under _options table
3) Search for _user_roles. You should be able to see the first prefix is the same as your main table. If it is different, change it to the same prefix as your table.
Try it out.
Category:
Uncategorized |
Comments Off on WordPress Error: Sorry, you are not allowed to access this page.
17th May 2017, 02:19 pm
Problem:
You might encounter black screen when booting up Windows 2012 R2 after running Windows Update.
This might happens if the Windows Update process did not complete successfully.
Solutions:
In your environment (VM or Physical), make sure you are able to access the Safe Mode by hitting F8 during the boot process. Go into “Safe Mode” and Windows will start reverting the updates.
(Optional)
If the above process does not seems to fix your problem, try this and repeat the above steps.
1. Boot into the recovery mode and use CMD
2. Use DiskPart to find out the location your system and Windows folder stored in.
3. Execute this: rename E:\Windows\WinSXS\Pending.xml Pending.old (assume that E drive is your Windows installation)
4. run ‘SFC /Scannow /OffBootDir=C:\ /OffWinDir=E:\Windows’ again where C:\ is your System folder and E:\ is your Windows folder location
Category:
Uncategorized |
Comments Off on Windows 2012 Boot into Black Screen (Before Login)
27th March 2017, 07:41 pm
In the newer build of DirectAdmin, Roundcube password changing is supported by default. However, if you are using SSL for your DirectAdmin port (2222), then you need to make a minor changes to the roundcube config file to connect via the SSL protocol.
sed -ie 's#tcp://localhost#ssl://localhost#' /var/www/html/roundcube/plugins/password/config.inc.php |
sed -ie 's#tcp://localhost#ssl://localhost#' /var/www/html/roundcube/plugins/password/config.inc.php
Or you can change it manually.
$config[‘password_directadmin_host’] = ‘tcp://localhost’;
to
$config[‘password_directadmin_host’] = ‘ssl://localhost’;
Enjoy!
Category:
Uncategorized |
Comments Off on Enable DirectAdmin RoundCube Password Plugin
25th March 2017, 06:00 pm
Building an new server for a customer of mine and encountered the following error.
[root@moon ]# /usr/bin/spamd --pidfile /var/run/spamd.pid -d -c -m 15 --ipv4
logger: add Syslog failed: Can't locate Sys/Syslog.pm in @INC (@INC contains: /usr/share/perl5 /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5) at /usr/share/perl5/Mail/SpamAssassin/Logger/Syslog.pm line 39.
BEGIN failed--compilation aborted at /usr/share/perl5/Mail/SpamAssassin/Logger/Syslog.pm line 39.
Compilation failed in require at (eval 44) line 1.
BEGIN failed--compilation aborted at (eval 44) line 1. |
[root@moon ]# /usr/bin/spamd --pidfile /var/run/spamd.pid -d -c -m 15 --ipv4
logger: add Syslog failed: Can't locate Sys/Syslog.pm in @INC (@INC contains: /usr/share/perl5 /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5) at /usr/share/perl5/Mail/SpamAssassin/Logger/Syslog.pm line 39.
BEGIN failed--compilation aborted at /usr/share/perl5/Mail/SpamAssassin/Logger/Syslog.pm line 39.
Compilation failed in require at (eval 44) line 1.
BEGIN failed--compilation aborted at (eval 44) line 1.
Quick Solution to the problem:
yum install -y perl-Sys-Syslog
Hope this helps…
11th January 2017, 12:30 am
Category:
Uncategorized |
Comments Off on Server Music has come live!
7th July 2016, 12:55 pm
A quick command line to search string in file.
findstr /c:”exact string” *.xml
17th January 2015, 01:53 pm
I had to install a software (Adobe Reader) requested by my client in Windows 2012 for them to use. Adobe Reader installation is a smooth and quick one as it always works after installation. However this time, it is slightly different. I had error launching the program due to a sandbox protection system in Adobe.
Follow this steps to disable it on startup.
REMEMBER THAT EDITING REGISTRY CAN BE DANGEROUS IF YOU DO NOT KNOW WHAT YOU ARE DOING!
Go to registry and locate this key:
Continue reading ‘Adobe Reader Issue in Windows 2012’ »
Category:
Uncategorized |
Comments Off on Adobe Reader Issue in Windows 2012
28th February 2013, 07:43 am
Happen to came across this problem. It does not happen to my other units of Dell Servers doing the same deployment procedure.
Take note that you need to purchase Dell DRAC Enterprise in order to execute ‘racadm’
[root@server ~]# racadm getled
NOTE:
This Integrated Dell Remote Access Controller does not support RACADM commands.
Please contact Dell Customer Service to upgrade your version of iDRAC. |
[root@server ~]# racadm getled
NOTE:
This Integrated Dell Remote Access Controller does not support RACADM commands.
Please contact Dell Customer Service to upgrade your version of iDRAC.
Strangely, this should not happen to me as I have purchased Dell DRAC Enterprise. This did not happen to my previous unit of Dell Servers.
After much troubleshooting and pulling of my hair, I managed to locate the problem to this 2 specific package not installed by OMSA
yum install srvadmin-idrac7 srvadmin-idracadm7 |
yum install srvadmin-idrac7 srvadmin-idracadm7
After which, let’s try to execute the command again
[root@server ~]# racadm getled
LED State : Not-Blinking |
[root@server ~]# racadm getled
LED State : Not-Blinking
Looks good 🙂 Hope it helps!
Category:
Uncategorized |
Comments Off on Dell iDRAC racadm issue
27th February 2013, 07:43 pm
Bump into a slight issue today
Problem:
gcc: /usr/lib64/mysql/libmysqlclient.so: No such file or directory
make: *** [sapi/fpm/php-fpm] Error 1 |
gcc: /usr/lib64/mysql/libmysqlclient.so: No such file or directory
make: *** [sapi/fpm/php-fpm] Error 1
Solutions:
ln -s /usr/lib64/libmysqlclient.so /usr/lib64/mysql/libmysqlclient.so |
ln -s /usr/lib64/libmysqlclient.so /usr/lib64/mysql/libmysqlclient.so
A pretty quick solution for the problem I encounter 🙂
Category:
Uncategorized |
Comments Off on PHP Build Issue libmysqlclient.so: No such file or directory
8th December 2012, 10:51 pm
Here is the quick configuration command
On Active Unit
failover
failover lan unit primary
failover lan interface fo Vlan3
failover interface ip fo 10.0.0.1 255.255.255.252 standby 10.0.0.2
interface Ethernet0/6
switchport access vlan 3 |
failover
failover lan unit primary
failover lan interface fo Vlan3
failover interface ip fo 10.0.0.1 255.255.255.252 standby 10.0.0.2
interface Ethernet0/6
switchport access vlan 3
Secondary Configuration
failover
failover lan unit secondary
failover lan interface fo Vlan3
failover interface ip fo 10.0.0.1 255.255.255.252 standby 10.0.0.2 |
failover
failover lan unit secondary
failover lan interface fo Vlan3
failover interface ip fo 10.0.0.1 255.255.255.252 standby 10.0.0.2
Force the current unit to go on standby mode
You got to understand how failover works as this is just a quick config on Cisco ASA
Enjoy!
Category:
Uncategorized |
Comments Off on Cisco ASA 5505 Failover Active/Standby Configuration