Is php5 available? How do I use php5 alongside php4?

All shared servers have php5 along with php4. New servers are being setup with PHP5 as default where old servers still have php4 as default. Please note the following important points: 1. To use specific php for all *.php files as default in your entire account, you need to edit ~/public_html/.htaccess file and add any of the following directive for respective php version: For PHP5: # Use PHP5 as default AddHandler application/x-httpd-php5 .php .php5 .php4 .php3 .phtml For PHP4: # Use PHP4 as default AddHandler application/x-httpd-php4 .php .php5 .php4 .php3 .phtml This will make the server process all files named .php or .php4 or .php3 or .phtml or .php5 by respective PHP Handler. After this change, no files under public_html will be processed by other PHP version. If you want to use both php4 and php5 and the server your account is on has PHP4 as default then you can create a sub folder in public_html say “test5” and add the above mentioned PHP5 directive in .htaccess there. This way php5 will be used only under that “test5” folder and the folder tree under it, and rest of your account will continue to use php4. 2. To make changes to php configuration, you will need to install php.ini in working folder. We have placed a typical default php.ini file for php5 here: http://www.jaguarpc.com/support/php5.txt (or you can download one from your control panel if you are JaguarPC shared hosting client) Please rename it to php.ini For example via ssh: cd ~/public_html/ wget http://www.jaguarpc.com/support/php5.txt mv php5.txt php.ini NOTE: In the current php implementation, php will pick php.ini in the following precedence:...

How do I make changes to php settings?

Please login to your control panel and click on “security notes” in front of PHP4 Version in the left column. You can find all the details on how to make changes to php e.g. register_globals etc. In short, you need to use your own php.ini file in the folder where the php script executes. For php5, you can use one php.ini file in your public_html folder. For more details click on “Click to View” in front of PHP5 Version in your control panel. Note: This applies to all JaguarPC shared and semi-dedicated hosting accounts. You can download the stock version of php4 and php5 files from here as well: php4: http://www.jaguarpc.com/support/php4.txt php5: http://www.jaguarpc.com/support/php5.txt Please rename the file to php.ini and edit it to make changes to php settings. NOTE again for php4 that you need to place php.ini in the folder where php script executes. So if you place php.ini in public_html/ and your script executes at public_html/somefolder/ (or via web the address is http://www.example.com/somefolder/) then it will not load the php.ini settings. The php.ini file needs to be in public_html/somefolder/ as well. For php5, please place your php.ini in public_html and it will be used for all sub-foloders. IMPORTANT NOTE: you need to place entire php.ini file with all settings in it. You can not place just a few...

Which php modules are installed on servers?

Here is a brief list of php4 modules that come standard with our shared/sdx/reseller servers: bcmath, calendar, ctype, curl, dom, domxml, exif, ftp, gd (with FreeType), gettext, iconv, imap, mbstring, mbregex, mcrypt, mhash, mm, mysql, mysqli, openssl, overload, pcre, pdflib, pear, posix, pspell, sablot, session, sockets, standard, tokenizer, wddx, xml, xmlrpc, xslt, zip, zlib – and Zend Optimizer php5 modules: bcmath, calendar, ctype, curl, date, dom, exif, filter, ftp, gd (with FreeType), gettext, hash, iconv, imap (with ssl), json, libxml, mbstring, mcrypt, mhash, mysql, mysqli, openssl, pcre, PDO, pdo_mysql, pdo_sqlite, posix, pspell, Reflection, session, SimpleXML, soap, sockets, SPL, SQLite, standard, tidy 2, tokenizer, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend Optimizer, zip, zlib. If you need any other module that is officially supported by php, or one of the above module is missing from your server, please open a support ticket and we can evaluate if it is possible to install...

How do I stream RealMedia content using HTTP?

1. Upload your encoded RealAudio or RealVideo files (files with the .ra or .rm extensions) to your account. 2. Use a text editor (such as Notepad) to create a metafile containing a RealAudio URL. For example, the contents of your file should be in the following form: http://yourdomain.com/path/file.ra or http://yourdomain.com/path/file.rm where yourdomain.com is the name of your website here. 3. Save your metafile in as text using a .ram filename extension. 4. In your HTML document, reference the metafile in a hyperlink. For example: <A HREF=”filename.ram”> or <A HREF=”http://yourdomain.com/file.ram”> You can use relative or complete paths. If you use complete paths, you must include both the yourdomain.com and the complete path. For example: <A HREF=”http://yourdomain.com/directory/file.ram”> 5. When a user clicks on the link, the audio file(s) begin to download. The RealAudio Player begins playing after a few seconds; it does not need to wait for the entire file to be...