Posted by caroline at 3:08 pm on June 17 2010
To debug a Zend framework project set to run on a virtual host, use these settings:
Web Server (Apache or another) used for development is located on this machine
Document root: C:\zs\quickstart\public (i.e., the PUBLIC directory of your project)
URL: http://quickstart.local/ (i.e, the virtual URL of your project)
Project root directory: C:\zs\quickstart\public (i.e., the PUBLIC directory of your...
Posted by caroline at 9:46 pm on June 16 2010
http://framework.zend.com/manual/en/learning.quickstart.intro.html
With many thanks to commenter alstanto on: 2010-04-07 22:04:18
Download Zend Framework 1.10.5 from:
http://downloads.zend.com/framework/1.10.5/ZendFramework-1.10.5.zip
Pre-Tutorial
Extract to c:\ZendFramework-1.10.5
Rename directory to c:\Zend
Add to Environment Path:
;C:\Zend\bin;C:\Zend\library;C:\xampp\php
Uncomment C:\xampp\apache\conf\httpd.conf
Include...
Posted by caroline at 10:25 pm on May 24 2010
To override the production environment default in Zend framework, add this to .htaccess:
SetEnv APPLICATION_ENV development
“development” enables the application to display debugging errors even when the .ini only has a [production] section.
Posted by caroline at 5:09 am on May 16 2010
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’t display until you update the menu to specify the new categories.
Posted by caroline at 5:49 pm on February 13 2010
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’s one extra text-only module published on the home page of the Cloud based version
The timings were random based on how long it...
Posted by caroline at 2:09 am on December 20 2009
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’t backup jos_session,...
Posted by caroline at 3:28 pm on December 03 2009
getVar( ‘view’, ” );
if ( $pageoption == ‘frontpage’ ) { $home=true;}else{$home=false;}
Posted by caroline at 8:38 pm on November 29 2009
The reason you can’t find the custom function to add an element to the wordpress head area
<head>
</head>
is because that behavior is controlled by the Thesis Options web interface in wp-admin, not through the custom_functions.php hook.
Now stop looking for a hook and go to your wp-admin.
Posted by caroline at 4:01 am on November 15 2009
update products set products_price = products_price + (products_price * .35)
Posted by caroline at 11:56 pm on September 23 2009
If Microsoft Word 2003 (or 2007) hangs even after applying Windows Update, Windows Update for Office, changing out Normal.dot… it might be that the default printer is a networked printer that is not available. Change the default printer in the control panel to a non-networked, local printer (even if it’s a PDF file printer).
Thank you to:
http://glovario.wordpress.com/2008/03/08/microsoft-word-2007-2003-xp-application-hang-event-id-1000-1001-1002/