<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Programming Answers &#187; Joomla</title>
	<atom:link href="http://www.bogartcomputing.com/web-programming-answers/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bogartcomputing.com/web-programming-answers</link>
	<description>Joomla Programmer, PHP, Joomla, Zen-Cart, osCommerce, MySQL, CSS, XHTML, Ecommerce, Search Engine Marketing, Web Programming answers, often in their rawest form</description>
	<lastBuildDate>Sun, 20 Jun 2010 19:38:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Local Windows XP, XAMPP Apache server, NuSphere PhpED debugger, Zend Framework mod_rewrite PHP Code Setup</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/274/local-windows-xp-xampp-apache-server-nusphere-phped-debugger-zend-framework-mod_rewrite-php-code-setup/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/274/local-windows-xp-xampp-apache-server-nusphere-phped-debugger-zend-framework-mod_rewrite-php-code-setup/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 19:36:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=274</guid>
		<description><![CDATA[INTRODUCTION How to setup a Zend Framework PHP web site on a local machine Windows XP machine using XAMPP and PhPED Debugger GOALS - Run the site from http://localhost or some equivalent on the local machine - Run the site in PhpED debugger WHY THIS ISN&#8217;T LIKE A NORMAL PHP WEB SITE - the Zend [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>INTRODUCTION</strong><br />
How to setup a Zend Framework PHP web site on a local machine Windows XP machine using XAMPP and PhPED Debugger</p>
<p><strong>GOALS</strong></p>
<p>- Run the site from http://localhost or some equivalent on the local machine<br />
- Run the site in PhpED debugger</p>
<p><strong>WHY THIS ISN&#8217;T LIKE A NORMAL PHP WEB SITE</strong></p>
<p>- the Zend Framework URL rewrites setup will KILL you on a local machine. As in, you will either want to commit suicide or homicide trying to set this up.</p>
<p>- If this example uses a slash at the end of a directory path or URI, USE THE SLASH.</p>
<p>- Every period, comma and slash is important!</p>
<p>- You might be able to make this work without the punctuation, but if your setup is broken, check the punctuation!</p>
<p><strong>OPERATING SYSTEM</strong><br />
WINDOWS XP and appropriate 150 or so Microsoft updates.</p>
<p><strong>APACHE SERVER, MYSQL DATABASE</strong><br />
XAMPP Package xampp-win32-1.7.1.exe<br />
It&#8217;s not the most recent but I know it works with Joomla and it works for this project as well.<br />
Extract to c:\ which creates c:\xampp<br />
Using the XAMPP control panel, install MySql and Apache as Windows services.</p>
<p><strong>WHENEVER YOU MAKE CHANGES TO </strong><br />
C:/xampp/apache files,<br />
RESTART Apache<br />
using Windows Services<br />
or at CMD &#8220;c:\xampp\apache\bin\httpd.exe&#8221; -k restart</p>
<p><strong>DEBUGGER IDE</strong><br />
NuSphere PhpED Professional 5.95 build 5970<br />
Install using all defaults to c:\program files\nusphere</p>
<p><strong>WEB SITE ZEND FRAMEWORK SETUP</strong><br />
Extract root of web site to c:\xampp\htdocs\myapp, where myapp is the placeholder for your web site&#8217;s root directory. A correctly architected Zend project will not require an index.php in the root directory. index.php is forwarded to public\index.php. This project (that we&#8217;re calling myapp, and that I inherited), does not use public for index.php. index.php is in the root directory. It does use .htaccess on a shared server BUT DOES NOT use .htaccess here.</p>
<p><strong>ARCHITECTURE</strong></p>
<pre>I AM NOT RECOMMENDING THIS ARCHITECTURE.
I am only documenting how to debug it.</pre>
<p>c:/xampp/htdocs/myapp/application</p>
<pre>configs, models, views, Bootstrap.php</pre>
<p>c:/xampp/htdocs/myapp/public</p>
<pre>resources such as images and videos</pre>
<p>c:/xampp/htdocs/myapp/public/index.php</p>
<pre>The index.php that invokes the Bootstrap</pre>
<p>myapp/.htaccess or myapp/public/.htaccess</p>
<pre>THERE ARE NONE. Virtual Hosts overrides .htaccess.</pre>
<p>c:/xampp/htdocs/myapp/php.ini:</p>
<pre>php_flag magic_quotes_gpc off
php_flag register_globals off
php_value include_path .;c:/xampp\htdocs\myapp\application;
</pre>
<p>c:/xampp/htdocs/myapp/application/configs/application.ini*<br />
* USE FULL PATHS rather than hybrid concatenations off APPLICATION_PATH</p>
<pre>[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
phpSettings.date.timezone = "UTC"
includePaths.library = c:\xampp\htdocs\myapp\application\library
bootstrap.path = c:\xampp\htdocs\myapp\application\Bootstrap.php
bootstrap.class = "Bootstrap"
resources.frontController.controllerDirectory = c:\xampp\htdocs\myapp\application\controllers
resources.db.adapter = PDO_MYSQL
resources.db.params.host = localhost
resources.db.params.username = root
resources.db.params.password =
resources.db.params.dbname = myapp

staging : production]

[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1

[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
</pre>
<p><strong>WINDOWS ENVIRONMENT PATH</strong><br />
Has NuSphere items from installation but NO extra definitions.<br />
Paths are defined in php.ini, application.ini, hosts and httpd.conf files.</p>
<p><strong>APACHE CONFIGURATION</strong><br />
c:/xampp/apache/conf/httpd.conf</p>
<p>Many of these are defaulted to these values. Some are not.</p>
<p>Enable mod_rewrite<br />
LoadModule rewrite_module modules/mod_rewrite.so</p>
<p>Include vhosts conf:<br />
Include conf/extra/httpd-vhosts.conf</p>
<p>Set AllowOverride to All &#8212; this directive affects whether Apache will read .htaccess.<br />
It is actually only necessary in vhosts (instructions below). However this setup is SO touchy that<br />
I would go ahead and set every AllowOverride to All regardless of which  element it&#8217;s in.</p>
<p>Entire c:/xampp/apache/conf/httpd.conf:</p>
<pre>ThreadsPerChild 250
MaxRequestsPerChild  0
ServerRoot "C:/xampp/apache"
Listen 80
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbd_module modules/mod_authn_dbd.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cache_module modules/mod_cache.so
LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule charset_lite_module modules/mod_charset_lite.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule expires_module modules/mod_expires.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule headers_module modules/mod_headers.so
LoadModule ident_module modules/mod_ident.so
LoadModule include_module modules/mod_include.so
LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule speling_module modules/mod_speling.so
LoadModule status_module modules/mod_status.so
LoadModule unique_id_module modules/mod_unique_id.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule ssl_module modules/mod_ssl.so
ServerAdmin admin@localhost
ServerName localhost:80
DocumentRoot "C:/xampp/htdocs"

    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    Deny from all

Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all

DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml

Order allow,deny
Deny from all

ErrorLog logs/error.log
LogLevel warn

LogFormat "%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %&gt;s %b" common

LogFormat "%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio

CustomLog logs/access.log common
ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"

AllowOverride All
Options None
Order allow,deny
Allow from all

DefaultType text/plain

TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddHandler cgi-script .cgi
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

EnableMMAP off
EnableSendfile off
Include conf/extra/httpd-xampp.conf
Include conf/extra/httpd-multilang-errordoc.conf
Include conf/extra/httpd-autoindex.conf
Include conf/extra/httpd-languages.conf
Include conf/extra/httpd-userdir.conf
Include conf/extra/httpd-info.conf
Include conf/extra/httpd-vhosts.conf
Include conf/extra/httpd-manual.conf
Include conf/extra/httpd-dav.conf
Include conf/extra/httpd-default.conf
Include conf/extra/httpd-ssl.conf

SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</pre>
<p><strong>VHOSTS</strong><br />
c:/xampp/apache/conf/extra/httpd-vhosts.conf</p>
<pre>NameVirtualHost *:80

DocumentRoot "c:\xampp\htdocs\myapp"
ServerName myapp.local
SetEnv APPLICATION_ENV "development"

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule !\.(js|ico|gif|jpg|png|css|php)$ \index.php
RewriteBase /
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</pre>
<p><strong>WINDOWS HOSTS</strong><br />
c:/windows/system32/drivers/etc/hosts</p>
<pre>127.0.0.1       localhost</pre>
<p><strong>INDEX.PHP</strong><br />
c:/xampp/htdocs/myapp/index.php<br />
(Really does start with &lt; ?php and doesn&#8217;t end with ?&gt;)</p>
<pre>&lt; ?php // Define path to application directory defined('APPLICATION_PATH')     || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/application')); // Define application environment defined('APPLICATION_ENV')     || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production')); // Ensure library/ is on include_path set_include_path(implode(PATH_SEPARATOR, array(     realpath(APPLICATION_PATH . '/../library'),     get_include_path(), ))); /** Zend_Application */ require_once 'Zend/Application.php';   // Create application, bootstrap, and run $application = new Zend_Application(     APPLICATION_ENV,      APPLICATION_PATH . '/configs/application.ini' ); require_once 'Zend/Mail.php'; $application-&gt;bootstrap()
            -&gt;run();
</pre>
<p><strong>PHPED PROJECT PROPERTIES</strong></p>
<p>PROJECT</p>
<pre>Root Directory: c:\xampp\htdocs\myapp
Additional Directories:
Source control: none
</pre>
<p>PUBLISHING</p>
<pre>Account:
Top publishing directory:
Don't publish directories: CVS;.svn
</pre>
<p>MAPPING</p>
<pre>HTTP mode (3rd party WEB server)
Root URL: http://localhost
Remote root directory: c:\xampp\htdocs\myapp
</pre>
<p>FILES</p>
<pre>Default file to run: c:\xampp\htdocs\myapp\index.php
Hide files:
Hide directories: CVS;.svn
</pre>
<p>PARSER</p>
<pre>CHECK Use Project-specific parser properties
PARSER PROPERTIES
Target PHP Version: 5.0 through 5.2
CHECK Support for short PHP tags &lt; ? ?&gt;
UNCHECKED Parse PHP in CSS files
UNCHECKED Support ASP style PHP Tags &lt; % %&gt;
UNCHECKED Parse PHP in Javascript files
</pre>
<p>DEBUGGER</p>
<pre>UNCHECKED Use Project-specific debugger settings
</pre>
<p>MAPPING</p>
<pre>Remote Directory: c:\xampp\htdocs\myapp
Local directory c:\xampp\htdocs\myapp
URL: http://localhost
Publishing Directory:
</pre>
<p>INTEGRATION</p>
<pre>phpdoc_target_dir:
</pre>
<p>INCLUDES</p>
<pre>Use what the debugger puts there
</pre>
<h2>SECRET TO GETTING IT TO WORK IN PHPED</h2>
<pre>The default PhpED file is index.php.
When you run the project in the debugger
it will create a URL such as:

http://localhost/index.php?DBGSESSID=403496131559100015@clienthost;d=1,p=0,c=1

And it will just keep recycling in the debugger,
the call stack always going back to the first
line of index.php.

GET RID OF INDEX.PHP:

Change the URL to http://localhost
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/274/local-windows-xp-xampp-apache-server-nusphere-phped-debugger-zend-framework-mod_rewrite-php-code-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server and XAMPP .htaccess mod_rewrite is on but ignored, creates 404&#8242;s</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/269/zend-server-htaccess-mod_rewrite-is-on-but-ignored-creates-404s/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/269/zend-server-htaccess-mod_rewrite-is-on-but-ignored-creates-404s/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 20:05:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=269</guid>
		<description><![CDATA[Virtual hosts require the rewrite engine be set in the conf rather than the .htaccess file. If you&#8217;re using a virtual host, put the mod rewrite commands in the virutal host settings. Include the vhosts conf file by uncommenting c:\program files\zend\apache2\conf\httpd.conf: Include conf/extra/httpd-vhosts.conf Add a virtual host to conf/extra/httpd-vhosts.conf. Note that a conf RewriteCond requires [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Virtual hosts require the rewrite engine be set in the conf rather than the .htaccess file. If you&#8217;re using a virtual host, put the mod rewrite commands in the virutal host settings.</p>
<p>Include the vhosts conf file by uncommenting c:\program files\zend\apache2\conf\httpd.conf:</p>
<pre>Include conf/extra/httpd-vhosts.conf
</pre>
<p>Add a virtual host to conf/extra/httpd-vhosts.conf. Note that a conf RewriteCond requires a pre-pended slash where .htaccess doesn&#8217;t, so you are rewriting /index.php, not index.php.</p>
<pre>NameVirtualHost *:80</pre>
<pre>&lt;VirtualHost *:80&gt;
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ /index.php [NC,L]
DocumentRoot "c:\Program Files\Zend\Apache2\htdocs\yourapp"
ServerName yourapp.local
SetEnv APPLICATION_ENV development
&lt;Directory "c:\program files\zend\apache2\htdocs\yourapp"&gt;
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
&lt;/Directory&gt;
</pre>
<p>Add virtual host server to c:/windows/system32/drivers/etc/hosts:</p>
<pre>127.0.0.1 yourapp.local</pre>
<p>Restart apache</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/269/zend-server-htaccess-mod_rewrite-is-on-but-ignored-creates-404s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend path not found in NuSphere PhpED debugger on Windows XP Xampp</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/257/zend-path-not-found-in-nusphere-phped-debugger-on-windows-xp-xampp/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/257/zend-path-not-found-in-nusphere-phped-debugger-on-windows-xp-xampp/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 03:09:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=257</guid>
		<description><![CDATA[If you add to the PATH but it doesn&#8217;t take you can add the path items manually in index.php: ini_set('include_path', ini_get('include_path'). ';C:\Zend\library;');]]></description>
			<content:encoded><![CDATA[<p></p><p>If you add to the PATH but it doesn&#8217;t take you can add the path items manually in index.php:</p>
<pre>ini_set('include_path', ini_get('include_path'). ';C:\Zend\library;');</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/257/zend-path-not-found-in-nusphere-phped-debugger-on-windows-xp-xampp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla JEvents Won&#8217;t Show All Events</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/203/joomla-jevents-wont-show-all-events/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/203/joomla-jevents-wont-show-all-events/#comments</comments>
		<pubDate>Sun, 16 May 2010 11:09:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=203</guid>
		<description><![CDATA[The menu item specifying the calendar component limits the categories displayed by that menu. If event categories are created after the menu is created those event categories won&#8217;t display until you update the menu to specify the new categories.]]></description>
			<content:encoded><![CDATA[<p></p><p>The menu item specifying the calendar component limits the categories displayed by that menu. If event categories are created after the menu is created those event categories won&#8217;t display until you update the menu to specify the new categories.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/203/joomla-jevents-wont-show-all-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@rackcloud forum post, or, move off @rackcloud or I&#8217;ll shoot this dog</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/197/rackcloud-forum-post-or-move-off-rackcloud-or-ill-shoot-this-dog/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/197/rackcloud-forum-post-or-move-off-rackcloud-or-ill-shoot-this-dog/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 23:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=197</guid>
		<description><![CDATA[Subject: 4 site comparisons caroline Joined: Aug 12, 2007 Messages: 97 Online Each domain name is a Cloud site. Each IP number is the same site as the domain name version but on a different host. The 208.85.243.55 is slightly smaller because there&#8217;s one extra text-only module published on the home page of the Cloud [...]]]></description>
			<content:encoded><![CDATA[<p></p><table border="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td width="160" height="22"><span> </span></td>
<td height="22"><span> <strong>Subject:</strong> <a id="17847" name="17847">4 site comparisons</a> </span></td>
<td align="right" valign="top"><!-- Icons --></td>
</tr>
</tbody>
</table>
<p><!-- Username --></p>
<p><span><strong>caroline</strong></span><br />
<span><br />
<img src="https://manage.rackspacecloud.com/forum/images/avatar/3a20f62a0af1aa152670bab3c602feed.png" border="0" alt="" /></span></p>
<p>Joined: Aug 12, 2007<br />
Messages: 97<br />
<span>Online</span></p>
<p><!-- Message --></p>
<p><span><span style="font-size: 14px; line-height: normal;"> </span></span></p>
<ul>
<li> Each domain name is a Cloud site.</li>
<li>Each IP number is the same site as the domain name version but on a different host.</li>
<li>The 208.85.243.55 is slightly smaller because there&#8217;s one extra text-only module published on the home page of the Cloud based version</li>
<li>The timings were random based on how long it took me to tab format the results before moving onto the next test</li>
<li>6:20pm #1 is a reminder of the &#8220;ah c&#8217;mon not 8 seconds&#8221; conversation from yesterday.</li>
<li>Out of 5 randomly-timed requests, one was 14 seconds.</li>
<li>I&#8217;ve had customers routinely report multi-second and multi-minute web site hangs.</li>
<li>In order to meet the terms of the bait and switch SLA (bait: marketing, switch: the burger king wrapper that is your cloud waranty), a web site hang doesn&#8217;t happen unless you are1) around to notice it<br />
2) not so busy that putting in a ticket doesn&#8217;t seem like a giant waste of time</p>
<p>Since these two conditions are extremely unlikely to happen the SLA will never come out in your favor.</li>
<li>When you can guilt an associate into seeing your point of view, instead of a refund you get MORE MONTHS OF THIS crap added to your account.In that spirit, I&#8217;m running a contest.First prize will be one month hosting on the cloud.Second prize is 4 months hosting and the third prize is an entire year.<br />
<table border="0" align="center">
<tbody>
<tr>
<td><span><strong>Code:</strong></span></td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td>
<pre> 6:18pm
 #
 	 Domain name 		Size 		Load Time 	Average Speed per KB
 1	planetherbs.com		47.5 KB		1.93 seconds	0.04 seconds
 2	208.85.243.55		45.23 KB	0.75 seconds	0.02 seconds

 3	b-naturals.com		23.15 KB	1.59 seconds	0.07 seconds
 4	208.85.243.58		23.15 KB	1.33 seconds	0.06 seconds

 5	smalldogmall.com	14.45 KB	1.39 seconds	0.1 seconds
 6	208.85.243.59		14.45 KB	1.74 seconds	0.12 seconds

 7	maryannelive.com	39.23 KB	2.19 seconds	0.06 seconds
 8	208.85.243.57		39.23 KB	1.69 seconds	0.04 seconds</pre>
</td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td><span><strong>Code:</strong></span></td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td>
<pre> 6:20pm
 #
 	 Domain name 		Size 		Load Time 	Average Speed per KB
 1	planetherbs.com		47.4 KB		14.17 seconds	0.3 seconds
 2	208.85.243.55		45.21 KB	0.74 seconds	0.02 seconds

 3	b-naturals.com		23.15 KB	2.18 seconds	0.09 seconds
 4	208.85.243.58		23.15 KB	1.1 seconds	0.05 seconds

 5	smalldogmall.com	14.45 KB	2.71 seconds	0.19 seconds
 6	208.85.243.59		14.45 KB	1.88 seconds	0.13 seconds

 7	maryannelive.com	39.23 KB	1.19 seconds	0.03 seconds
 8	208.85.243.57		39.23 KB	1.42 seconds	0.04 seconds</pre>
</td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td><span><strong>Code:</strong></span></td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td>
<pre> 6:22pm
 #
 	 Domain name 		Size 		Load Time 	Average Speed per KB
 1	planetherbs.com		47.48 KB	1.97 seconds	0.04 seconds
 2	208.85.243.55		45.24 KB	0.74 seconds	0.02 seconds

 3	b-naturals.com		23.15 KB	1.74 seconds	0.08 seconds
 4	208.85.243.58		23.15 KB	0.96 seconds	0.04 seconds

 5	smalldogmall.com	14.45 KB	1.22 seconds	0.08 seconds
 6	208.85.243.59		14.45 KB	1.2 seconds	0.08 seconds

 7	maryannelive.com	39.23 KB	1.47 seconds	0.04 seconds
 8	208.85.243.57		39.23 KB	1.11 seconds	0.03 seconds</pre>
</td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td><span><strong>Code:</strong></span></td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td>
<pre> 6:27pm

 #
 	 Domain name 	Size 	Load Time 	Average Speed per KB
 1	planetherbs.com		47.43 KB	2.02 seconds	0.04 seconds
 2	208.85.243.55		45.24 KB	0.74 seconds	0.02 seconds

 3	b-naturals.com		23.15 KB	2.69 seconds	0.12 seconds
 4	208.85.243.58		23.15 KB	1.94 seconds	0.08 seconds

 5	smalldogmall.com	14.45 KB	1.28 seconds	0.09 seconds
 6	208.85.243.59		14.45 KB	2.26 seconds	0.16 seconds

 7	maryannelive.com	39.23 KB	1.48 seconds	0.04 seconds
 8	208.85.243.57		39.23 KB	1.16 seconds	0.03 seconds</pre>
</td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td><span><strong>Code:</strong></span></td>
</tr>
</tbody>
</table>
<table border="0" align="center">
<tbody>
<tr>
<td>
<pre> 6:29pm
 #
 	 Domain name 	Size 	Load Time 	Average Speed per KB
 1	planetherbs.com		47.5 KB		1.75 seconds	0.04 seconds
 2	208.85.243.55		45.33 KB	0.73 seconds	0.02 seconds

 3	b-naturals.com		23.15 KB	1.52 seconds	0.07 seconds
 4	208.85.243.58		23.15 KB	1.39 seconds	0.06 seconds

 5	smalldogmall.com	14.45 KB	1.49 seconds	0.1 seconds
 6	208.85.243.59		14.45 KB	1.26 seconds	0.09 seconds

 7	maryannelive.com	39.23 KB	1.17 seconds	0.03 seconds
 8	208.85.243.57		39.23 KB	1.27 seconds	0.03 seconds</pre>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/197/rackcloud-forum-post-or-move-off-rackcloud-or-ill-shoot-this-dog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JoomlaPack Joomla Site Restore When Files are Too Large</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/195/joomlapack-joomla-site-restore-when-files-are-too-large/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/195/joomlapack-joomla-site-restore-when-files-are-too-large/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 08:09:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/195/joomlapack-joomla-site-restore-when-files-are-too-large/</guid>
		<description><![CDATA[The database sql file in a JoomlaPack JPA file is stored in installation/sql/joomla.sql. The correct specs to upload large files into the Joomla LMS file library is .htaccess: php_value upload_max_filesize 100M php_value post_max_size 100M php_value memory_limit 2048M php_value max_execution_time 120 I gigantic Joomla sql file (205 MB) is possibly 135 MB jos_session. Don&#8217;t backup jos_session, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The database sql file in a JoomlaPack JPA file is stored in installation/sql/joomla.sql.</p>
<p>The correct specs to upload large files into the Joomla LMS file library is .htaccess:<br />
php_value upload_max_filesize 100M<br />
php_value post_max_size 100M<br />
php_value memory_limit 2048M<br />
php_value max_execution_time 120</p>
<p>I gigantic Joomla sql file (205 MB) is possibly 135 MB jos_session. Don&#8217;t backup jos_session, or, edit it out using Jujusoft JuJuEdit, or split the sql file into pieces using splitter.exe, then piece back the pieces you do want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/195/joomlapack-joomla-site-restore-when-files-are-too-large/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Determine Home Page in Joomla index.php Template</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/193/re-how-to-determine-home-page-in-joomla-index-php-template/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/193/re-how-to-determine-home-page-in-joomla-index-php-template/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:28:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Joomla Programmer]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/193/re-how-to-determine-home-page-in-joomla-index-php-template/</guid>
		<description><![CDATA[getVar( &#8216;view&#8217;, &#8221; ); if ( $pageoption == &#8216;frontpage&#8217; ) { $home=true;}else{$home=false;}]]></description>
			<content:encoded><![CDATA[<p></p><p>getVar( &#8216;view&#8217;, &#8221; );<br />
if ( $pageoption  == &#8216;frontpage&#8217; ) { $home=true;}else{$home=false;}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/193/re-how-to-determine-home-page-in-joomla-index-php-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Programmer: Joomla 1.5 Control Menu Web Links Category Display Number Select Dropdown</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/126/joomla-15-control-menu-web-links-category-display-number-select-dropdown/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/126/joomla-15-control-menu-web-links-category-display-number-select-dropdown/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 04:08:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Joomla Programmer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[counts]]></category>
		<category><![CDATA[web links]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=126</guid>
		<description><![CDATA[Joomla Programmer Removing Joomla 1.5 Web Link Category and Hit Counts Joomla 1.5.9 leaves out a control parameter to avoid showing the &#8220;how many do you want to display&#8221; select dropdown when displaying a Web Link category. To get rid of the Display # dropdown: Go to components/com_weblink/category/tmpl/default_items.php Remove echo JText::_(&#8216;Display Num&#8217;) .&#8217;&#38;nbsp;&#8217;; echo $this-&#62;pagination-&#62;getLimitBox(); [...]]]></description>
			<content:encoded><![CDATA[<p></p><h1>Joomla Programmer</h1>
<h2>Removing Joomla 1.5 Web Link Category and Hit Counts</h2>
<p>Joomla 1.5.9 leaves out a control parameter to avoid showing the &#8220;how many do you want to display&#8221; select dropdown when displaying a Web Link category.</p>
<p><img class="alignnone size-full wp-image-131" title="Joomla Programmer. Web links category information" src="http://www.bogartcomputing.com/web-programming-answers/wp-content/uploads/2009/03/weblink_catinfo.gif" alt="Joomla Programmer. Web links category information" width="280" height="308" /></p>
<p>To get rid of the Display # dropdown:</p>
<p>Go to components/com_weblink/category/tmpl/default_items.php</p>
<p>Remove</p>
<p>echo JText::_(&#8216;Display Num&#8217;) .&#8217;&amp;nbsp;&#8217;;<br />
echo $this-&gt;pagination-&gt;getLimitBox();</p>
<p>To get rid of the category counts:</p>
<p>Go to components/com_weblinks/views/category/tmpl/default.php</p>
<p>Remove</p>
<p>&amp;nbsp;<br />
&lt;span class=&#8221;small&#8221;&gt;<br />
(&lt;?php echo $category-&gt;numlinks;?&gt;)<br />
&lt;/span&gt;<br />
<img class="alignnone size-full wp-image-132" title="Joomla Programmer. Web link cateogry display showing other categories but no category count." src="http://www.bogartcomputing.com/web-programming-answers/wp-content/uploads/2009/03/weblink_catnocount2.gif" alt="Joomla Programmer. Web link cateogry display showing other categories but no category count." width="274" height="278" /></p>
<p>There&#8217;s also no way to remove the category counts from the Web Link category listing.</p>
<p><img class="alignnone size-full wp-image-128" title="Web Link Category Count" src="http://www.bogartcomputing.com/web-programming-answers/wp-content/uploads/2009/03/weblink_catcount.gif" alt="Web Link Category Count" width="282" height="156" /></p>
<p>To remove the category counts:</p>
<p>In components/com_weblinks/views/categories/tmpl/default.php</p>
<p>Find</p>
<p>&lt;a href=&#8221;&lt;?php echo $category-&gt;link; ?&gt;&#8221; class=&#8221;category&lt;?php echo $this-&gt;params-&gt;get( &#8216;pageclass_sfx&#8217; ); ?&gt;&#8221;&gt;<br />
&lt;?php echo $this-&gt;escape($category-&gt;title);?&gt;&lt;/a&gt;</p>
<p>After that remove:</p>
<p>&amp;nbsp;<br />
&lt;span class=&#8221;small&#8221;&gt;<br />
(&lt;?php echo $category-&gt;numlinks;?&gt;)<br />
&lt;/span&gt;</p>
<p><img class="alignnone size-full wp-image-130" title="Joomla Programmer web link no count." src="http://www.bogartcomputing.com/web-programming-answers/wp-content/uploads/2009/03/weblink_catnocount.gif" alt="Joomla Programmer web link no count." width="270" height="166" /></p>
<p>Even if you turn off hits in the menu item pointing to the Web Links the hits will display anyway. Perhaps due to cache, I&#8217;m not sure, the system ignores the Table Headings set to Hide parameter in the menu item pointing to the Web Link category.</p>
<p>To remove the table permanently (the administrator menu parameters will now not work at all though):</p>
<p>Go to Go to components/com_weblink/category/tmpl/default_items.php:</p>
<p>Find:</p>
<p>&lt;?php if ( $this-&gt;params-&gt;def( &#8216;show_headings&#8217;, 1 ) ) : ?&gt;</p>
<p>Change this to:</p>
<p>&lt;?php if (false) : ?&gt;</p>
<p>Find:</p>
<p>&lt;?php if ( $this-&gt;params-&gt;get( &#8216;show_link_hits&#8217; ) ) : ?&gt;<br />
Change this to:</p>
<p>&lt;?php if (false) : ?&gt;</p>
<p><img class="alignnone size-full wp-image-135" title="Joomla Programmer. Web Links Modified." src="http://www.bogartcomputing.com/web-programming-answers/wp-content/uploads/2009/03/weblinks_done.gif" alt="Joomla Programmer. Web Links Modified." width="258" height="270" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/126/joomla-15-control-menu-web-links-category-display-number-select-dropdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursive separate file and directory permission chmod tool</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/124/recursive-separate-file-and-directory-permission-chmod-tool/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/124/recursive-separate-file-and-directory-permission-chmod-tool/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 12:57:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[flashfxp]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=124</guid>
		<description><![CDATA[The Joomla CMS file system should be, for the most part, 755 directory and 644 file permissions. FTP doesn&#8217;t handle recursive chmod very well. This is a shout out to FlashFXP ftp client for allowing the user to separately chmod file and directory permissions.]]></description>
			<content:encoded><![CDATA[<p></p><p>The Joomla CMS file system should be, for the most part, 755 directory and 644 file permissions. FTP doesn&#8217;t handle recursive chmod very well. This is a shout out to <a title="FlashFXP" href="http://www.flashfxp.com/" target="_self">FlashFXP ftp client </a>for allowing the user to separately chmod file and directory permissions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/124/recursive-separate-file-and-directory-permission-chmod-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m the shelter lady.</title>
		<link>http://www.bogartcomputing.com/web-programming-answers/111/im-the-shelter-lady/</link>
		<comments>http://www.bogartcomputing.com/web-programming-answers/111/im-the-shelter-lady/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 04:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free Animal Shelter Websites]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[animal shelter]]></category>
		<category><![CDATA[bomb shelter]]></category>
		<category><![CDATA[shelter]]></category>
		<category><![CDATA[weather shelter]]></category>

		<guid isPermaLink="false">http://www.bogartcomputing.com/web-programming-answers/?p=111</guid>
		<description><![CDATA[I&#8217;ve been doing a lot of shelter work &#8212; bomb shelters, weather shelters, animal shelters. I&#8217;m the shelter lady. News releases here. Including the recent: How To Rescue A 60-Year-Old Turtle: Military-Grade Underground Shelter Company Green Eye Technology Upgrades &#8220;Duck And Cover&#8221;; Launches Website, That Puppy in the Window Costs Too Much: New Website Aims [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;ve been doing a lot of shelter work &#8212; bomb shelters, weather shelters, animal shelters. I&#8217;m the shelter lady.  <a title="Bogart Computing news." href="http://www.bogartcomputing.com/index.php?option=com_content&amp;task=category&amp;sectionid=2&amp;id=72&amp;Itemid=398">News releases here</a>.  Including the recent:</p>
<p><a href="http://www.bogartcomputing.com/index.php?option=com_content&amp;task=view&amp;id=265&amp;Itemid=398">How To Rescue A 60-Year-Old Turtle: Military-Grade Underground Shelter Company Green Eye Technology Upgrades &#8220;Duck And Cover&#8221;; Launches Website</a>, <a href="../../index.php?option=com_content&amp;task=view&amp;id=256&amp;Itemid=398"></a></p>
<p><a href="../../index.php?option=com_content&amp;task=view&amp;id=256&amp;Itemid=398">That Puppy in the Window Costs Too Much: New Website Aims to Shut Down Puppy Mills</a></p>
<p><a href="../../index.php?option=com_content&amp;task=view&amp;id=254&amp;Itemid=398">Rescue Help for Homeless Dogs and Cats in Georgia Comes From New Hampshire</a></p>
<p>These are Joomla websites with search engine friendly links. And a lot of love.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogartcomputing.com/web-programming-answers/111/im-the-shelter-lady/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
