4 Search results

For the term "joomla".

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...

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...

Install Joomla 2.5 on Ubuntu 12.04 LTS

Assuming Joomla is uploaded to your remote server and unzipped in /home/username/joomla Create your website directory sudo mkdir /var/www/www.example.com Copy Joomla to the website directory sudo cp -Rf /home/username/joomla/* /var/www/www.example.com I use scripts to set Joomla permission at this point. If you run into trouble, it will be because permissions are not set correctly, so I do this by default....

GREP SED AWK VI and FIND Usage Notes for Webmasters

When it comes to manipulating files, you can do almost anything with GREP SED AWK VI and FIND (and I’m a novice). My notes (taken from far more capable individuals online than I. Thank you all for the education.) File manipulation using AWK, GREP, SED, FIND, VI AWK AWK to extract IPs from logs Lists of IPs from log file...