Tag Archive for 'Apache'

Linux Apache MySQL PHP

tux.pngThe acronym LAMP refers to a solution stack of software, usually free software / open-source software, used to run dynamic Web sites or servers. The original expansion is as follows:

  • Linux, referring to the operating system;
  • Apache, the Web server;
  • MySQL, the database management system (or database server);
  • PHP, the programming languages.

The combination of these technologies is used primarily to define a web server infrastructure, define a programming paradigm of developing software, and establish a software distribution package.

I’ve made this small graphic (80×15 pixels) that you can use to designate your usage of this type of server. L.A.M.P.

Continue reading ‘Linux Apache MySQL PHP’

Problems with Vanilla 1.1.4

Several attempts at installing Vanilla have all ended in disappointment.500-error-01.jpg As a platform for a forum community, Vanilla looks promising, however, the server gods have thus far prevented me from trying it out on my on server.

I could just use phpBB, but I am really sick of it - primarily the constant spam problems. So for the time being I suppose I will just do without a forum and rely upon the antiquated comments in the blogs for discussions.

This installation is on my shared hosting account at Hostgator. It appears the problem is that the built in file manager of cPanel does not tranfer the files correctly.

Resolved - I deleted everything and started over using an ftp client. In this case Fetch 5.3 on Mac OS X 10.5, now everything appears to be working well. The forums are available now and being tested at forum.malagent.com until I have a better use for them.

Creating Rewrite Rules

Creating Rewrite Rules (.htaccess)

Your server must have mod_rewrite for cruft-free permalinks to work. In addition, you must create a .htaccess file and place it in the directory in which your main index.php file resides, or make that directory writable so that WordPress can do this for you. For example, if your WordPress blog is installed at domain.com/wordpress/, put the .htaccess file at domain.com/wordpress/.htaccess. However, if your WordPress installation is in a subdirectory but your visitors access your site at the top level of your domain, place the .htaccess file at the domain’s root domain.com/.htaccess.

Continue reading ‘Creating Rewrite Rules’