BareMetal.com

Baremetal
My Account
Domain Registration Management Services
Web Services
Tech Support
Tech Support Contact Info
CGI Library
Your Server
Billing Info
Company Info
Charities
Legal Info
Employment
Privacy Statement

BM


Technical Support

Tech Support: PHP, MySQL, php.ini and .htaccess info and tips;

PHP, MySQL, php.ini and .htaccess info and tips

There are a few tricks you may want to know. Some of these may be specific to BareMetal.

See this link if you need to install your own PHP extensions (PEAR, PECL, etc).

PHP Settings

The two most common settings that clients will want to change are the "register_globals" and "allow_url_fopen" settings. For new accounts both of these default to off. All new versions of php default register_globals to off and we wanted to copy that. We have seen several clients have their websites compromised by badly written PHP code and the "magic" of allow_url_fopen, so we have set this to off.

Defaults are:

    register_globals = 0
    allow_url_fopen = 0

Changing these is easy. You can place a file called php.ini the top directory of your website containing the settings you want.

If you need to have different settings for different parts of your website, then you need to use a ".htaccess" file to change the PHPRC environment variable (and create a second php.ini file). (Please contact support for help. We also need to re-map the path for the PHP binary, otherwise the SetEnv doesn't apply.)

(Wondering what register_globals and allow_url_fopen are? register_globals is covered at the PHP site here and here. allow_url_fopen allows PHP to open http:// and ftp:// URLs the same way it would normally open a file on the hard drive. In combination with badly/insecurely initialized variables it can result in PHP running code off an attackers website (very very bad news).

Zend Guard / Zend Optimizer for PHP

With version 5.3 of PHP, the Zend folks changed their obfuscation system. Zend Guard works with version of php from 5.3.0 onwards. Zend Optimizer works with php versions up to 5.2.17 . Unfortunately the encodings are different and files encoded for Zend Optimizer are not runnable by Zend Guard and vice versa.

To enable Zend Guard, add the following lines to your php.ini file:

zend_extension=/usr/local/Zend/ZendGuardLoader.so
zend_loader.enable=1

To enable Zend Optimizer, add the following line to your php.ini file:

zend_extension=/usr/local/Zend/ZendOptimizer.so

If you're still using an even older version of PHP (Update! even 5.2 is obsolete!), the previous lines to add were:

[Zend]
zend_extension_manager.optimizer=/usr/local/scripts/Zend/lib/Optimizer
zend_extension_manager.optimizer_ts=/usr/local/scripts/Zend/lib/Optimizer_TS
zend_extension=/usr/local/scripts/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/scripts/Zend/lib/ZendExtensionManager_TS.so

PHP Versions

We generally support multiple versions of php. Contact to us for more detail. Changing between them is just a tweak to your .htaccess file. e.g.

AddType text/x-php56-parsed-html php

As of January 2020, PHP versions up to 7.4 are supported on all but the oldest of our servers.

MySQL

Not a lot to say here. Leave the "database host" field blank, or set it to localhost in your applications. If you need to connect to your MySQL database from offsite, contact BareMetal support. Do the same if you need to create a new database.

.htaccess Files

We have a number of existing pages covering .htaccess files. The most commonly used .htaccess page covers redirects, allowing and denying access, setting custom error messages, and changing the mime-types. Another page describes how to include other pages and scripts in your files. (This can be a nice way to do headings and footers.) The last page talks about some of the variables (like the current time) that you can include in your pages.

Tips and Tricks

I can't remember what we wanted to put here right now. Send suggestions to support@baremetal.com! :-)



 
Home Page    Domain Registration Services    Web Services    Technical Support
About Baremetal    Privacy Statement    Billing Info    Charities
My Account    Legal Info    Search BareMetal

Copyright © 1996-2012, BareMetal.com Inc.
Last updated: Thursday, 09-Jan-2020 08:07:37 PST
Last Accessed from: 2a06:98c0:3600::103
Questions and comments to support@baremetal.com