70 Search results

For the term "change user".

SEO Robots

What is Robots.txt Robots.txt is a file that provides crawl instructions about your site for search engines (bots that crawl your site). It can be used to 1) restrict which directories bots “should”*** not crawl, 2) tells the bot where your sitemap is located. A Robots.txt file is a good idea, and considered an SEO best practice, but is not...

Revert Ubuntu Desktop Unity to Gnome

sudo add-apt-repository ppa:gnome3-team/gnome3 sudo apt-get update sudo apt-get install gnome-shell reboot choose Gnome at login sudo apt-get install gnome-tweak-tool Use your browser to access Gnome Extensions Read more about Gnome3 on Ubuntu 12.04 here. Very well written and thorough. Gnome3 Youtube Channel

Magento Fixes

Clear Magento Cache If something breaks, this is the best place to start. Often the reason Magento crashes is due to someone doing something stupid. Stupid in Magento translates to “enabling or disabling extensions without first disabling the compiler”. sudo /shell php -f compiler.php clear sudo /shell php -f compiler.php disable sudo rm -Rf /var/www/magento/var/cache/* sudo rm -Rf /var/www/magento/var/session/* Clear...

Joomla Permissions Settings

Permissions Settings are the central problem with all CMS. Here is how I set permissions while installing extensions in Joomla. Before and after installing an extension, I use these BASH scripts to change permissions so that nothing hangs. (it almost always does without using these) Optional security tip: If it is possible in your environment, stopping Apache during the install...

Perl Modules won’t Install on Debian Server

/usr/bin/make — NOT OK Failed during this command: Anytime you cannot get a Perl package to install, here is the likely problem. Run these: sudo apt-get install build-essential What is wrong : a Debian Server install intentionally does not contain development tools for security and efficiency reasons. So when you attempt to run Perl, you find that you can’t get...

Bash PS1 Manual Prompt Variables

PS1=’\[$(tput bold)$(tput setab 1)$(tput setaf 2)\]\t \u@\h \w \[$(tput sgr0)\] ‘ https://linuxconfig.org/bash-prompt-basics \a : an ASCII bell character (07) \d : the date in “Weekday Month Date” format (e.g., “Tue May 26”) \D{format} : the format is passed to strftime(3) and the result is inserted into the prompt string; an empty format results in a locale-specific time representation. The braces...

Customize Debian Linux grub2

I wanted to remove the splash image while booting Debian 7 Wheezy and watch the code execute, while also use the full screen resolution.

Start Reverse Tunnel on boot using autossh for Debian 7

As usual, most of the how-to guides out there are too brief (I’m guilty) or apply to other distros: This works on Linux Debian 7 all-around, and this is a complete how to. It works. You just have to follow a very long thread. No A.D.D. here! We will create a Persistent Reverse SSH Tunnel between 2 machines using autossh....

Joomla Install Extensions Manually Using Rsync/SSH

I’m very surprised how few solutions (How To Guides) there are out there for this issue. If you don’t use FTP to upload to your server (for security reasons), here’s how to install extension in Joomla using SSH(Rsync). That tells me the Joomla community is largely OK with FTP and getting hacked because of it. (there are certainly no shortage...