Posts

Showing posts with the label solve

Solve The mcrypt extension is missing Please check your PHP configuration Phpmyadmin Error in Ubuntu 13 10

Image
Solve The mcrypt extension is missing Please check your PHP configuration Phpmyadmin Error in Ubuntu 13 10 Ive done installation phpmyadmin on Ubuntu 13.10 with apache web server. I restarted apache2 and after login to phpmyadmin, on the bottom of the page show this error: " The mcrypt extension is missing. Please check your PHP configuration. " like screenshot below: So, how to fix this problem? Its bug is missing mcrypt.ini , where the file located in /etc/php5/conf.d/ , which should be in /etc/php5/mods-available/ . So we should move mcrypt.ini into /etc/php5/mods-available/ with the following commands below: Run the Terminal, and switch to superuser / root by type: sudo su Then move mcrypt.ini file into /etc/php5/mods-available/ | mv -i /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/ Then type this command: php5enmod mcrypt Then restart apache2: service apache2 restart So, you will not find error on the bottom of the phpmyadmin page. download file now

Solve Ubuntu Network Manager problems

Image
Solve Ubuntu Network Manager problems If you are a user of Ubuntu 8.10 or 9.04 you know how awful the built-in Network Manager is. It doesnt save your settings, and settings doesnt get applied so its literary impossible to change your IP address using it. One solution is to remove the Network Manager and edit the network configuration files manually. But theres an easier approach. You can install Wicd to do the configuration for you. This is an alternative to the default network manager which does it job right. Its really simple and straightforward to use. Here are the simple steps required. Install wicd through Synaptic Package Manager. Network Manager will be removed from the tray panel when you install wicd . Go to System -> Preferences -> Startup Applications and disable the Network Manager. If newly installed wicd network icon isnt there in the tray panel, launch it from Applications -> Internet -> Wicd Network Manager . It will start automatically from next startup...

Solve This disk is write protected using CMD

Image
Solve This disk is write protected using CMD Hello Friends , Back with a new trick Sometimes when you want to format your Pen-drive it comes up with an error and Windows will tell you it is  Write Protected . So, today Im going to share a very simple method to Format the Pen-drive by using cmd. JUST FOLLOW THESE STEPS - 1.  Insert  your Pen-drive in USB Port 2.  Now  Note down the Letter  associated with your removal disk ( Pen-drive ) eg -  F:  as shown above 3. Now Click on  START   4. Type  cmd  in search Box and Hit  ENTER  ( Win 7 & 8 )   For Win XP - Start > Run > Type cmd > Hit enter 5. A box will open when you hit ENTER 6. Now type  Format F:  ( with Colon - Two dots ) and Press ENTER [ If you want to Format it as FAT32  then type -  Format F: /FS: FAT32  ] 7. Just wait for 10 min and Its Done. [ Note - Please write the Letter Associated with your Pen-drive instead of...

Solve connection error on Ubuntu Server on VMware Workstation

Solve connection error on Ubuntu Server on VMware Workstation Virtualization has been a necessity for quick deployment of server. However there is a drawback of connection in case like VMware Workstation 7.0 where ubuntu server loose internet connection due to failure of  VMware NAT Service. A restart for NAT service is required to bring everything in working order. I dont exactly why vmnat.exe stop working but this error causes severe loss to server based on vmware so to resolve this problem I have made custom batch script. You can schedule task it as per your severity. For my preference I shall schedule it for every 5 minutes. @setlocal enableextensions enabledelayedexpansion @echo off set ipaddr={YOUR VMWARE LOCAL IP} Eg. 192.168.xxx.128 set oldstate=neither :loop set state=up ping -n 1 !ipaddr! >nul: 2>nul: if not !errorlevel!==0 ( set state=down taskkill /im vmnat.exe /T /F net start "VMWare NAT Service" ) if not !state!==!oldstate! ( echo.Link is !state! se...

Solve You have files waiting to be burned to disc

Image
Solve You have files waiting to be burned to disc If you see  You have files waiting to be burned to disc  message in Windows 8 | 7 taskbar notification area, every time you start your computer, then it simply means that there was an error when you tried to copy the files earlier and the copy did not completely successfully. if files or folders have been accidentally placed on the Disc burner drive or if a copy or recording operation failed completely. If you see this message, then follow this tutorial to delete these temporary files that are waiting to be burned to disc and solve the problem. You have files waiting to be burned to disc The resolution is quite simple. You will have to navigate to the following folder and delete all the temporary files placed in it: C:UsersUsernameAppDataLocalMicrosoftWindowsBurnTemporary Burn Folder To do so, open Run box, type  shell:cd burning  and hit Enter, to open the folder. Delete all the files in this...

Solve Problem AH00558 When Restarting Apache2

Solve Problem AH00558 When Restarting Apache2 Im trying to restart apache2 using this command: sudo service apache2 restart or sudo /etc/init.d/apache2 restart But get below error: AH00558: apache2: Could not reliably determine the servers fully qualified domain name, using 127.0.1.1. So, how to fix this problem? Edit file apache2.conf from directory /etc/apache2/ by use this following command: nano /etc/apache2/apache2.conf Add the following syntax in the last row of apache2.conf file: ServerName localhost So that error doesnt disappear. download file now

Solve PS 2 Mouse and Keyboard Problem in Ubuntu 10 04

Solve PS 2 Mouse and Keyboard Problem in Ubuntu 10 04 Use the following command for solving PS/2 Mouse and Keyboard Problem $ sudo rmmod psmouse $ sudo modprobe psmouse If you cannot access the  system , connect in a network, use remote login and use above the command download file now