active questions tagged zend-framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:33:07Z http://stackoverflow.com/feeds/tag/zend-framework http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1951215/zend-framework-zendauth-sessions-getting-mixed-up 0 Zend Framework Zend_auth sessions getting mixed up understack 2009-12-23T07:36:52Z 2009-12-23T08:04:50Z <p>I've two subdomains. Each subdomain has its own authenticated users database. I'm using </p> <pre><code>$auth = Zend_Auth::getInstance(); if($auth-&gt;hasIdentity()){ } </code></pre> <p>to check user login credentials. It works prefectly for each individual subdomain. But when I log into one subdomain and try to access 'restricted' page in another subdomain without logging out from first subdomain, it takes me thru. Basically 'auth' session of first subdomain returns true in '$auth->hasIdentity()' for second subdomain. How can I solve this? </p> <p><strong>EDIT: Probably using different auth session names might solve it but since I'm sharing the code between these 2 subdomains, this is not feasible option.</strong> </p> http://stackoverflow.com/questions/1948951/zend-framework-seo-tips 0 Zend Framework SEO tips understack 2009-12-22T20:33:10Z 2009-12-23T07:54:27Z <p>I've done basic work suggested by Google and others to improve Google ranking. What are the 'specific' things I should do with Zend Framework (or in general any MVC architecture) to make it better? It seems all the usual methods aren't working that well with Zend Framework.</p> http://stackoverflow.com/questions/1947216/zendform-arbitrary-number-of-key-value-pair-fields 1 Zend_Form arbitrary number of key-value pair fields erenon 2009-12-22T15:47:54Z 2009-12-23T04:32:08Z <p>I'm trying to create a form using Zend_Form (Zend_Framework component). The users should be able to add arbitrary number of fields. Just as you can upload files with gmail GUI. Example:</p> <pre><code>[_____] [+] </code></pre> <p>After clicking on the [+] button:</p> <pre><code>[_____] [_____] [+] </code></pre> <p>To get things complicated, I'd like to add field <em>pairs</em>, so it would look like this:</p> <pre><code>[_____] [_____] [_____] [_____] [+] </code></pre> <p>How can I keep the availability of the easy built-in validation and assign methods while implementing this feature? Do I need a subform? Do I need something else? After submitting the form, the code should be able to map the fields into and array.</p> <p>I'm afraid I must subclass Zend_Form or SubForm, but I want to be aware of the easiest/prettiest way.</p> http://stackoverflow.com/questions/507554/using-relations-for-setting-in-zenddbtablerow 1 Using relations for setting in Zend_Db_Table_Row harvejs 2009-02-03T15:30:23Z 2009-12-22T21:00:02Z <p>Hi there is there a way how to use Zend_Db relations for setting related objects? I am looking for something like following code:</p> <pre><code>$contentModel = new Content(); $categoryModel = new Category(); $category = $categoryModel-&gt;createRow(); $category-&gt;setName('Name Category 4'); $content = $contentModel-&gt;createRow(); $content-&gt;setTitle('Title 4'); $content-&gt;setCategory($category); $content-&gt;save(); </code></pre> <p>this provides small library: <a href="http://code.google.com/p/zend-framework-orm/" rel="nofollow">http://code.google.com/p/zend-framework-orm/</a></p> <p>does somebody have experience with that? Isn't there a plan for something similar in ZF ? Or is there something better for use? (I don't wnat to use doctrine ORM or something external) </p> <p>thanks</p> http://stackoverflow.com/questions/1947816/add-dir-to-application-dir-zend-framework 0 Add DIR to application dir Zend Framework Dr Casper Black 2009-12-22T17:14:28Z 2009-12-22T20:40:37Z <p>Hi,</p> <p>I whant to use some classes that are not part of ZF. I have a dir classes in application dir and the classes dir contains classes that are required as object or static. In Bootstrap i "load" every class.php. </p> <pre><code>Zend_Loader::loadFile('TimeZones.php', APPLICATION_PATH.'/classes/', false); </code></pre> <p>How can I have all the classes by default loaded/included from this dir? </p> <p><hr></p> <p><strong>SOLUTION</strong> for now. in Bootstrap.php</p> <pre><code>$files = scandir(APPLICATION_PATH.'/classes/'); foreach($files as $file) { if($file[0] != '.') { Zend_Loader::loadFile($file, APPLICATION_PATH.'/classes', false); } } </code></pre> http://stackoverflow.com/questions/1948569/how-to-optimize-mysql-full-match 0 How to optimize mysql full match Uffo 2009-12-22T19:25:27Z 2009-12-22T19:47:15Z <p>Hey guys, do you know some trick about how can I optimize more a full match search?</p> <p>The code that I'm trying to optimize:</p> <pre><code>$do = $this-&gt;select() -&gt;where('MATCH(`name`,`ort`) AGAINST( ? IN BOOLEAN MODE)', $theString) -&gt;order('premium DESC'); </code></pre> <p>The search should search for some companies...and let's say that in the field <strong>name</strong> I have: <strong>Google</strong> and in the <strong>ort</strong> field I have <strong>new york</strong>.</p> <p>I want to do a query like: <strong>google center in new york</strong> and to give me as a result all the google centers from new york only!</p> <p>I hope you understand what I mean!</p> http://stackoverflow.com/questions/1943457/zend-form-checkbox-element-displays-as-hidden-field 2 Zend Form: Checkbox element displays as hidden field? Andrew 2009-12-22T00:14:27Z 2009-12-22T19:09:52Z <p>I would like to add a simple check box to my form:</p> <pre><code>$element = new Zend_Form_Element_Checkbox('dont'); $element-&gt;setDescription('Check this box if you don\'t want to do this action.'); $form-&gt;addElement($element); </code></pre> <p>However, this is what the html looks like:</p> <pre><code>&lt;dt id="dont-label"&gt;&amp;nbsp;&lt;/dt&gt; &lt;dd id="dont-element"&gt; &lt;input type="hidden" name="dontAttach" value="0"&gt; &lt;input type="checkbox" name="dontAttach" id="dontAttach" value="1"&gt; &lt;p class="description"&gt;Don't attach a bulletin. I only want to send an email.&lt;/p&gt; &lt;/dd&gt; </code></pre> <p>The problem with this is that I'm using jQuery to hide all the DT/DDs that have a label of <code>&amp;nbsp;</code> inside the DT and a hidden element inside the DD (so my html will validate and the hidden elements don't take up space on the page). Is there a way to use a <code>Zend_Form_Element_Checkbox</code> without having to display a hidden input element? I'd rather not mess with my jQuery code to add more caveats, but I will if I have to.</p> <h2>Solution:</h2> <p>Apparently, I can't/shouldn't remove the hidden element before the checkbox element. So here's my jQuery code to hide all the hidden form elements from being displayed on a page:</p> <pre><code>//fix zf hidden element from displaying $('input[type=hidden]').filter(function() { var noLabel = $(this).closest('dd').prev('dt').html() === '&amp;nbsp;'; var onlyChild = $(this).is(':only-child'); if (noLabel &amp;&amp; onlyChild) { return true; } return false; }).each(function() { $(this).closest('dd').hide() .prev('dt').hide(); }); </code></pre> http://stackoverflow.com/questions/1948008/zendauth-be-able-to-login-with-both-email-and-username 0 Zend_Auth - Be Able To Login With Both Email And Username Richard Knop 2009-12-22T17:41:43Z 2009-12-22T18:22:21Z <p>So I am using Zend_Auth to authenticate users of my website. Currently they are only able to log in with their email as login but I would like to enable them to log in also with their username.</p> <p>Here is some code:</p> <pre><code> // prepare adapter for Zend_Auth $adapter = new Zend_Auth_Adapter_DbTable($this-&gt;_getDb()); $adapter-&gt;setTableName('users'); $adapter-&gt;setIdentityColumn('email'); $adapter-&gt;setCredentialColumn('password_hash'); $adapter-&gt;setCredentialTreatment('CONCAT(SUBSTRING(password_hash, 1, 40), SHA1(CONCAT(SUBSTRING(password_hash, 1, 40), ?)))'); $adapter-&gt;setIdentity($request-&gt;getParam('email')); $adapter-&gt;setCredential($request-&gt;getParam('password')); </code></pre> <p>Notice the line:</p> <pre><code> $adapter-&gt;setIdentityColumn('email'); </code></pre> <p>How can I add also username there (column in the database called username, too)?</p> <p>UPDATE:</p> <p>This is how I solved this:</p> <pre><code> $login = $request-&gt;getParam('email'); $validator = new Zend_Validate_EmailAddress(); if (false === $validator-&gt;isValid($login)) { $u = $this-&gt;_getTable('Users')-&gt;getSingleWithUsername($login); if (null === $u) { throw new Exception ('Invalid login and/or password'); } $login = $u-&gt;email; } // prepare adapter for Zend_Auth $adapter = new Zend_Auth_Adapter_DbTable($this-&gt;_getDb()); $adapter-&gt;setTableName('users'); $adapter-&gt;setIdentityColumn('email'); $adapter-&gt;setCredentialColumn('password_hash'); $adapter-&gt;setCredentialTreatment('CONCAT(SUBSTRING(password_hash, 1, 40), SHA1(CONCAT(SUBSTRING(password_hash, 1, 40), ?)))'); $adapter-&gt;setIdentity($login); $adapter-&gt;setCredential($request-&gt;getParam('password')); </code></pre> http://stackoverflow.com/questions/1911558/zend-framework-how-to-find-a-table-row-by-the-value-of-a-specified-column 0 Zend Framework: How to find a table row by the value of a specified column? Andrew 2009-12-16T00:46:19Z 2009-12-22T15:14:12Z <p>I am implementing my model exactly like the <a href="http://framework.zend.com/docs/quickstart/create-a-model-and-database-table" rel="nofollow">quickstart guide</a>.</p> <p>In my model I am trying to implement a <code>findByToken()</code> method. The current <code>find()</code> method accepts an <code>$id</code> parameter, but I want to find by the value of a different column.</p> <pre><code>//excerpt from the quickstart guide public function find($id, Default_Model_Guestbook $guestbook) { $result = $this-&gt;getDbTable()-&gt;find($id); if (0 == count($result)) { return; } $row = $result-&gt;current(); $guestbook-&gt;setId($row-&gt;id) -&gt;setEmail($row-&gt;email) -&gt;setComment($row-&gt;comment) -&gt;setCreated($row-&gt;created); } </code></pre> <p>I tried doing something like this, but I don't think it worked:</p> <pre><code>$db = $this-&gt;getDbTable(); $where = $db-&gt;getAdapter()-&gt;quoteInto('token = ?', $token); $result = $db-&gt;find($where); </code></pre> <p>What would be the proper way to find a row by the value of a specified column?</p> http://stackoverflow.com/questions/77371/zend-framework-or-cakephp 4 Zend Framework or CakePHP? gorzan 2008-09-16T21:34:34Z 2009-12-22T14:55:24Z <p>My group is going to attempt to build a new CMS from scratch, designed to serve the needs of our organization. It should be noted that none of us have any formal programming education, but we've picked up this and that from developing different websites, among others the one our community uses now. We've decided to program the new CMS in PHP, with total MVC seperation. Not wanting to re-invent all the little cogs and wheels needed for such a potentially large project as this, we've been looking into using a PHP framework, and some googling and blog-surfing landed us in a discussion: Zend vs Cake?</p> <p>Anyone have any useful input here? Also, any other tips for embarking on this project would be appreciated. (Except for suggestions for existing CMSes, we know they're out there.)</p> <p>EDIT: It seems I was a bit unclear. None of us are NEW to PHP - in fact, we all have fairly extensive experience from previous projects, including the current solution our community's website runs on which we built ourselves. The decision to not use an existing CMS is a very informed one, so although I appreciate all the good suggestions we really are going to do this ourselves. So. Zend vs Cake?</p> http://stackoverflow.com/questions/1946064/sphinx-requirements-would-it-work-on-my-webhostings-provider 0 Sphinx requirements, would it work on my Webhostings provider ? camran 2009-12-22T12:23:49Z 2009-12-22T13:32:00Z <p>I am still searching for a search engine to be used on my webhosting-providers server (one.com) and still haven't found any.</p> <p>I have heard great things about Sphinx, what are the requirements to run it?</p> <p>I have read the manual, doesn't say much, seems like it should work... Just want to ask some professionals first.</p> <p>I dont have access to mysql configurations... (I mean that I can't open and edit the my.cnf or my.ini file for mysql settings as it isn't my server).</p> <p>Also, Sphinx doesn't need the mysql database to be 'fulltext' right?</p> <p>Thanks</p> http://stackoverflow.com/questions/1942790/uploadify-minimum-image-width-and-height 1 Uploadify Minimum Image Width And Height Richard Knop 2009-12-21T21:38:38Z 2009-12-22T13:28:41Z <p>So I am using the Uplodify plugin to allow users to upload multiple images at once. The problem is I need to set a minimum width and height for images. Let's say 150x150px is the smallest image users can upload.</p> <p>How can I set this limitation in the Uploadify plugin? When user tries to upload smaller picture, I would like to display some error message as well.</p> <p>Here is the PHP file that is called bu the plugin to upload images:</p> <pre><code>&lt;?php define('BASE_PATH', substr(dirname(dirname(__FILE__)), 0, -22)); // set the include path set_include_path(BASE_PATH . '/../library' . PATH_SEPARATOR . BASE_PATH . '/library' . PATH_SEPARATOR . get_include_path()); // autoload classes from the library function __autoload($class) { include str_replace('_', '/', $class) . '.php'; } $configuration = new Zend_Config_Ini(BASE_PATH . '/application' . '/configs/application.ini', 'development'); $dbAdapter = Zend_Db::factory($configuration-&gt;database); Zend_Db_Table_Abstract::setDefaultAdapter($dbAdapter); function _getTable($table) { include BASE_PATH . '/application/modules/default/models/' . $table . '.php'; return new $table(); } $albums = _getTable('Albums'); $media = _getTable('Media'); if (false === empty($_FILES)) { $tempFile = $_FILES['Filedata']['tmp_name']; $extension = end(explode('.', $_FILES['Filedata']['name'])); // insert temporary row into the database $data = array(); $data['type'] = 'photo'; $data['type2'] = 'public'; $data['status'] = 'temporary'; $data['user_id'] = $_REQUEST['user_id']; $paths = $media-&gt;add($data, $extension, $dbAdapter); // save the photo move_uploaded_file($tempFile, BASE_PATH . '/public/' . $paths[0]); // create a thumbnail include BASE_PATH . '/library/My/PHPThumbnailer/ThumbLib.inc.php'; $thumb = PhpThumbFactory::create(BASE_PATH . '/public/' . $paths[0]); $thumb-&gt;adaptiveResize(85, 85); $thumb-&gt;save(BASE_PATH . '/public/' . $paths[1]); // add watermark to the bottom right corner $pathToFullImage = BASE_PATH . '/public/' . $paths[0]; $size = getimagesize($pathToFullImage); switch ($extension) { case 'gif': $im = imagecreatefromgif($pathToFullImage); break; case 'jpg': $im = imagecreatefromjpeg($pathToFullImage); break; case 'png': $im = imagecreatefrompng($pathToFullImage); break; } if (false !== $im) { $white = imagecolorallocate($im, 255, 255, 255); $font = BASE_PATH . '/public/fonts/arial.ttf'; imagefttext($im, 13, // font size 0, // angle $size[0] - 132, // x axis (top left is [0, 0]) $size[1] - 13, // y axis $white, $font, 'HunnyHive.com'); switch ($extension) { case 'gif': imagegif($im, $pathToFullImage); break; case 'jpg': imagejpeg($im, $pathToFullImage, 100); break; case 'png': imagepng($im, $pathToFullImage, 0); break; } imagedestroy($im); } echo "1"; } </code></pre> <p>And here's the javascript:</p> <pre><code>$(document).ready(function() { $('#photo').uploadify({ 'uploader' : '/flash-uploader/scripts/uploadify.swf', 'script' : '/flash-uploader/scripts/upload-public-photo.php', 'cancelImg' : '/flash-uploader/cancel.png', 'scriptData' : {'user_id' : 'USER_ID'}, 'queueID' : 'fileQueue', 'auto' : true, 'multi' : true, 'sizeLimit' : 2097152, 'fileExt' : '*.jpg;*.jpeg;*.gif;*.png', 'wmode' : 'transparent', 'onComplete' : function() { $.get('/my-account/temporary-public-photos', function(data) { $('#temporaryPhotos').html(data); }); } }); $('#upload_public_photo').hover(function() { var titles = '{'; $('.title').each(function() { var title = $(this).val(); if ('Title...' != title) { var id = $(this).attr('name'); id = id.substr(5); title = jQuery.trim(title); if (titles.length &gt; 1) { titles += ','; } titles += '"' + id + '"' + ':"' + title + '"'; } }); titles += '}'; $('#titles').val(titles); }); }); </code></pre> <p>Now bear in mind that I know how to check images dimensions in the PHP file. But I'm not sure how to modify the javascript so it won't upload images with very small dimensions.</p> http://stackoverflow.com/questions/1544118/zend-framework-normal-query-to-zenddbtable 0 Zend Framework normal query to Zend_Db_Table Uffo 2009-10-09T14:27:22Z 2009-12-22T11:10:55Z <p>Here is my query:</p> <pre><code>"SELECT * FROM `posts` WHERE MATCH(title, text) AGAINST('".$word."' IN BOOLEAN MODE)"; </code></pre> <p>How can I do this with Zend_Db_Table, I mean($this->select()...)</p> <p>Best Regards!</p> http://stackoverflow.com/questions/1535361/getting-zendgdata-feed-for-a-specific-google-calendar 1 Getting Zend_GData Feed for a Specific Google Calendar Tim Lytle 2009-10-08T02:49:56Z 2009-12-22T09:13:23Z <p>I had a long detailed question about how to get a specific calendar's event feed, but figured (I think) a solution out before I posted. However, even with the solution <strong>I'm left wondering what I'm missing about this process.</strong> To get a single calendar's event feed (or to search that feed) I do the following:</p> <ul> <li>Authenticate (obviously)</li> <li>Get a list of Calendars: getCalendarListFeed();</li> <li>Get the id property from one of the 'calendar' objects</li> <li>Change: .../calendar/feeds/default/XXX%40YYY</li> <li>To: .../calendar/feeds/XXX%40YYY/private/full</li> <li>Pass that to getCalendarEventFeed() to query for that calendar.</li> </ul> <p><strong>Why do I have to manipulate the ID?</strong> It seems like the documentation for Zend_Gdata is spread over both Google's and Zend's sites. I haven't located a good reference on available properties from getCalendarListFeed(), so maybe I should grab something other than the ID? </p> <p>It seems like there <em>has</em> to be more straightforward way - what am I missing here?</p> http://stackoverflow.com/questions/1943300/can-i-predict-how-large-my-zend-framework-index-will-be-and-some-quick-qs 2 Can I predict how large my Zend Framework index will be? (and some quick Q:s) camran 2009-12-21T23:28:03Z 2009-12-22T01:13:23Z <p>I have around <code>100thousand</code> rows in a mysql table, where <code>each row has about 8 fields.</code></p> <p>I have finally got the hold on how to use <code>Zend Lucene</code> to index and search data from a mysql table.</p> <p>Before I fully implement this funcionality to my website, I have some questions:</p> <p>1- Is it possible to determine the size of a index in advance? This because in the Zend manual it says the max size of a index is 2GB. I am straight away thinking that isn't enough for my table!</p> <p>2- I have read posts where they say Zend Lucene search is very slow on large indexes, up to minutes! Is it faster to use mysql commands directly (SELECT, LIKE etc) instead of zend?</p> <p>3- Is there any other solutions to my problem which is to create a search engine for classifieds which has <a href="http://stackoverflow.com/questions/1932697/which-third-party-search-engine-free-should-i-use">these</a> functions atleast, and doesn't require full-text mysql indexes (fields).</p> <p>Thanks</p> http://stackoverflow.com/questions/1911293/how-to-set-the-default-checked-value-of-a-zendform-radio-element 0 How to set the default checked value of a Zend_Form Radio Element? Andrew 2009-12-15T23:42:57Z 2009-12-22T00:27:42Z <p>I have a radio element with two options. I want to set one as the default value in case the user forgets to check it. How can I do this?</p> <h2>Solution:</h2> <pre><code>$this-&gt;addElement('radio', 'choose', array( 'required' =&gt; true, 'multiOptions' =&gt; array( 'yes' =&gt; 'heck yes', 'no' =&gt; 'please no' ), 'value' =&gt; 'yes' //key of multiOption )); </code></pre> http://stackoverflow.com/questions/1934475/how-to-set-the-date-format-of-a-zendxjqueryformelementdatepicker 0 How to set the date format of a ZendX_JQuery_Form_Element_DatePicker? Andrew 2009-12-19T23:38:00Z 2009-12-21T23:21:13Z <p>I am trying to set the date format of the date picker element, but I can't get it to work. How do you set the date format of a <code>ZendX_JQuery_Form_Element_DatePicker</code> element?</p> <h2>Solution:</h2> <p>Strange...I tried my original code sample again, and it worked.</p> <pre><code>$element = new ZendX_JQuery_Form_Element_DatePicker('date', array( 'jQueryParams' =&gt; array( 'dateFormat' =&gt; 'yy-mm-dd' //displays: 2010-01-26 ), )); </code></pre> http://stackoverflow.com/questions/1943088/zend-cache-howto-php 0 Zend Cache Howto PHP streetparade 2009-12-21T22:37:10Z 2009-12-21T23:08:57Z <p>How can i do the followin tasks</p> <pre><code>public function addToCache($id,$items) { // in zend cache } public function getFromCache($id) { // in zend cache } </code></pre> <p>The first method should take an id and items which should be cached.</p> <p>The second method should just take an id of an cached object, and should return the content of the cache of that item id.</p> <p>i want to be able to do something like that;</p> <pre><code>public function getItems() { if(!$this-&gt;cache-&gt;getFromCache('items')) { $this-&gt;addToCache('items',$this-&gt;feeds-&gt;items()); return $this-&gt;cache-&gt;getFromCache('items'); } } </code></pre> <p>How can i do the both methods in zend cache ?</p> http://stackoverflow.com/questions/1942385/little-help-with-making-this-basic-search-function-work-zend-lucene 1 Little help with making this basic search function work (Zend Lucene) camran 2009-12-21T20:21:00Z 2009-12-21T21:01:41Z <p>I have two php files so far, test.php:</p> <pre><code>&lt;?php include("../config_conn_fordon_db.php"); include("../config_open_db.php"); // Fix Special Characters mysql_query("SET NAMES 'utf8'") or die(mysql_error()); mysql_query("SET CHARACTER SET 'utf8'") or die(mysql_error()); $root = realpath($_SERVER["DOCUMENT_ROOT"]); set_include_path($root.'/SV/bincgi/zend/library/'); require_once('/library/Zend/Db/Adapter/Pdo/Mysql.php'); require_once('/library/Zend/Search/lucene.php'); $db = Zend_Db::factory('Pdo_Mysql', array( 'host' =&gt; 'localhost', 'username' =&gt; 'user', 'password' =&gt; 'password', 'dbname' =&gt; 'fordon_db' )); $query="SELECT * FROM cars_db"; $result = $db-&gt;fetchAll($query, 2); echo $result[0]['headline']; $index = Zend_Search_Lucene::create('/hej/test', true); $doc = new Zend_Search_Lucene_Document(); $doc-&gt;addField(Zend_Search_Lucene_Field::Keyword('headline', $result[0]['headline'])); $index-&gt;addDocument($doc); $index-&gt;commit(); ?&gt; </code></pre> <p>AND search.php:</p> <pre><code>&lt;?php include("../config_conn_fordon_db.php"); include("../config_open_db.php"); // Fix Special Characters mysql_query("SET NAMES 'utf8'") or die(mysql_error()); mysql_query("SET CHARACTER SET 'utf8'") or die(mysql_error()); $root = realpath($_SERVER["DOCUMENT_ROOT"]); set_include_path($root.'/SV/bincgi/zend/library/'); //require_once('/library/Zend/Db/Adapter/Pdo/Mysql.php'); require_once('/library/Zend/Search/lucene.php'); /*$db = Zend_Db::factory('Pdo_Mysql', array( 'host' =&gt; 'localhost', 'username' =&gt; 'user', 'password' =&gt; 'password', 'dbname' =&gt; 'fordon_db' )); $query="SELECT * FROM cars_db"; $result = $db-&gt;fetchAll($query, 2); echo $result[0]['headline']; */ $index = Zend_Search_Lucene::open('/hej/test', true); //$doc = new Zend_Search_Lucene_Document(); echo "Index contains {$index-&gt;count()} documents.\n"; $query = ""; $hits = $index-&gt;find($query); echo "Search for \"$query\" returned " .count($hits). " hits.\n\n"; echo "HEADLINE: "; echo $hits-&gt;headline; ?&gt; </code></pre> <p>I have TWO problems here, Firstly I don't get any results at all. I am not sure if the value of 'headline' is actually inserted (or indexed) as it should be, is there anyway to check if it has indexed it proberly?</p> <p>Second, I get this error message: </p> <pre><code>Notice: Trying to get property of non-object in C:\wamp\www\SV\bincgi\zend\search.php on line 30 </code></pre> <p>which is the last line in search.php where I echo Headline...</p> <p>What I am trying to do is to get all 'headline' fields from a mysql table and index them so that I can search them later on, but I am starting with just one right now.</p> <p>Thanks</p> <p>BTW: When I echo $result[0]['headline'] in test.php I get the result from the mysql table field, so it works that far!</p> http://stackoverflow.com/questions/1926710/zend-controller-action-get-helper-in-other-class 0 Zend Controller Action , get Helper in other class? ArneRie 2009-12-18T06:41:33Z 2009-12-21T19:56:46Z <p>Hi Folks,</p> <p>is there any way to get an Action Helper from an Service Class?</p> <p>I have the following Helper:</p> <pre><code>class Helper_Host extends Zend_Controller_Action_Helper_Abstract { /** * Return Hosturl with path * * @return string Hostname */ public function direct() { $front = Zend_Controller_Front::getInstance(); $host = 'http://' . $_SERVER['HTTP_HOST']; $host .= $front-&gt;getBaseUrl() . '/'; return (string) $host; } } </code></pre> <p>Now i want to get the Hostname from "My_Service_XYZ" , getStaticHelper is not working like excepted (;</p> <pre><code>class My_Service_XYZ { public function test() { $h = Zend_Controller_Action_HelperBroker::getStaticHelper('Host'); return $h-&gt;host(); // not working.. } } </code></pre> http://stackoverflow.com/questions/1846400/how-to-call-a-zend-lucene-search-function 1 How to call a Zend lucene search function? stef 2009-12-04T11:30:35Z 2009-12-21T19:40:27Z <p>I inherited a Zend project devoid of comments and I didn't get to talk to the previous developer. Since I have no Zend experience I'm having some issues :)</p> <p>I'd like to print out some variables inside an function that indexes items from the site using Zend_Search_Lucene because I think something is going wrong here. </p> <p>From what I've read, ::create creates a new index and ::open updates it. So it's in this ::open function I'd like to print out some variables.</p> <p>The name and params of the function are below. Does anyone have any idea how this function can be called so I can run some tests?</p> <pre><code>private function search($category,$string,$page = 1,$itemsByPage = 5) </code></pre> <p>EDIT: OR, is there a way I can nuke the existing index and force it to be rebuilt completely, for example by deleting the index files on the FS and then performing some searches?</p> http://stackoverflow.com/questions/1937633/zend-framework-access-denied-to-my-database-but-only-under-certain-wi-fi-connec 0 Zend Framework, access denied to my database, but only under certain wi-fi connections? Andrew 2009-12-21T00:32:51Z 2009-12-21T19:36:49Z <p>This is the second time that I've noticed this...</p> <p>I am running my Zend Framework application on my laptop, but connecting to my remote database. It works fine most of the time (from home, and other places). But this is the second time that I get an error message from my application:</p> <pre><code>SQLSTATE[28000] [1045] Access denied for user 'databaseuser'@'some.ip.address.here' (using password: YES) </code></pre> <p>The only thing that has changed is my wi-fi connection. Now, this message consistently pops up on this wi-fi connection, but once I am on a different one, I won't get this message. However, I noticed that this has also happened once when running the application on the production server and accessing it via wi-fi.</p> <p>What does this mean for my application? How can I prevent this from happening?</p> http://stackoverflow.com/questions/1937433/php-loop-date-sorting-challenge 0 PHP loop, date sorting challenge... Andrew 2009-12-20T23:04:47Z 2009-12-21T18:04:01Z <p>I'm having trouble trying to figure out how to achieve this programming challenge in my Zend Framework application:</p> <p>I need to create an array that looks like this:</p> <pre><code>$array = array( 0 =&gt; stdClass()-&gt;monthName -&gt;monthResources = array() 1 =&gt; stdClass()-&gt;monthName -&gt;monthResources = array() ); </code></pre> <p>This is the original array I have to work with:</p> <pre><code>$resources = array( 0 =&gt; Resource_Model()-&gt;date (instance of Zend_Date) 1 =&gt; Resource_Model()-&gt;date 2 =&gt; Resource_Model()-&gt;date //etc... ); </code></pre> <p>The original array (<code>$resources</code>) is already sorted by date (descending) so I need to create an array where the resources are grouped by month. I only want the months that have resources, so if the resources skip a month, there shouldn't be a <code>stdClass</code> object for that month in the final array.</p> <p>I also want this to process quickly, so any advice on optimizing the code (and still being readable) would be great. How can I achieve this?</p> http://stackoverflow.com/questions/1813703/how-to-make-zendcontrollerrouter-resets-parameter-by-default 2 How to Make Zend_Controller_Router resets parameter by default Omar Dolaimy 2009-11-28T20:28:29Z 2009-12-21T14:46:31Z <p>Hi, I'm using Zend-Framework 1.9.5 to make a web-application, But it's Url_Helper was quite tricky to me in the matter of parameter reset!, I know it's a good feature (parameter preserving) but in most cases I don't need it!. So I'm thinking of overriding the default Router to force it loosing parameters Unless I ask for it or maybe specifying a certain parameters that it keeps like (lang, or something like that).</p> <p>Also I want to make it the default router so I don't have to edit my Controllers, Views to get that done!</p> <p>Any suggestions?</p> <p>Thanks</p> http://stackoverflow.com/questions/1939972/how-to-change-a-zend-layout-in-module-controller-to-layout-stored-in-another-modu 0 How to change a Zend Layout in module/controller to layout stored in another module? L Digital Dash 2009-12-21T12:58:29Z 2009-12-21T13:18:13Z <p>I am working in the error controller of my default module but I have other modules/controllers that have errors. Their errors are sent to the default/error controllers but the layouts that are used are the ones from the module that threw the error. I want to only use the default modules layout for all errors.</p> http://stackoverflow.com/questions/1938488/authentication-methods-for-zend-framework-xml-rpc-server 3 Authentication methods for Zend Framework XML-RPC server andybaird 2009-12-21T06:16:11Z 2009-12-21T09:54:34Z <p>I have a Zend Framework application whose sole purpose is to serve as an XmlRpc / JSONRPC server.</p> <p>I've mostly followed the philosophy from <a href="http://weierophinney.net/matthew/archives/227-Exposing-Service-APIs-via-Zend-Framework.html" rel="nofollow">this guide</a> for my implementation method. I overrode my Bootstrap's run() method to run a Zend_XmlRpc_Server object and attach the API classes to it.</p> <p>I want to authenticate any XML-RPC method that gets ran with an "API key" I have stored in a database table. If I had a traditional MVC ZF setup, I would use a controller plugin to automatically take care of the authentication, but I don't have that option. My only solution right now is manually insert code into each API method to check for authentication.</p> <p>Any thoughts on a more pragmatic way to solve this issue? I'd prefer not to have a bunch of repeated code at the top of every method.</p> http://stackoverflow.com/questions/1934622/zend-framework-controller-mappings 0 Zend Framework Controller Mappings Elie 2009-12-20T01:15:22Z 2009-12-21T05:34:27Z <p>I have my directory structure set up as follows:</p> <pre><code>Application Root |-application | |--configs | |--controllers | | |--helpers | | | |--layouts | | |--scripts | | | |--models | |--views | |--scripts | |--index | |--test | |--data | |--session | |--public |--index.php |--.htaccess </code></pre> <p>In my controllers directory, I have 2 controllers: <code>IndexController</code> and <code>TestController</code> which have identical internal definitions, with 2 methods, <code>indexAction</code> and <code>testingAction</code>. When I point my browser to <code>localhost/application</code> I get the result of my <code>IndexController.indexAction()</code> but when I go to <code>localhost/test</code> or <code>localhost/testing</code> or <code>localhost/test</code> or really, any other variation, I get a 404 Not Found error.</p> <p>I'm using the Zend Framework (1.9.6 I believe), and I've confirmed that there is no issue with the various source PHP files in terms of syntax errors.</p> <p>Why might I be seeing this behavior and what can I do to fix it?</p> <p><strong>EDIT:</strong></p> <p>I had another developer send me a full Zend-based application to compare my setup with. There were no apparent differences in terms of the location of files, or the contents of the various configuration files. However, on his site too, I can only access the index page of the site, but none of the internal controllers. He does not have that problem. Is this possibly an issue with my Apache setup?</p> http://stackoverflow.com/questions/1933726/zend-dbnorecordexists-checking-against-multiple-columns 0 Zend Db_NoRecordExists - checking against multiple columns ojitori 2009-12-19T18:21:23Z 2009-12-21T00:38:49Z <p>Hi,</p> <p>Zend Db_NoRecordExists docs seem to be limited to checking only one column. Is there a way to check multiple keys when validating an entry? For example, I am allowing the same email address for different cities.</p> <p>here's my current validator:</p> <pre><code>$email-&gt;setValidators(array(array('emailAddress'), array('Db_NoRecordExists',false, array( 'table'=&gt;'usercities', 'field'=&gt;'email', )))); </code></pre> <p>usercities table has two columns: email varchar(64) city_id tinyint</p> <p>I want to be able to check for the combination of these columns. Is this possible? I assume I'll have to create a custom validator. Can it be done without resorting to a custom class?</p> <p>thanks!</p> <p>Oji</p> http://stackoverflow.com/questions/1937582/how-do-i-install-zend-on-my-website-and-how-do-i-test-if-it-works -2 How do I install Zend on my website and how do I test if it works ? camran 2009-12-21T00:10:46Z 2009-12-21T00:24:56Z <p>Background: I need to setup a search engine for my classifieds site, which is PHP and Mysql based.</p> <p>I have downloaded Zend Framework and have no clue what to do with it. My webhosting provider says they don't support changing the php.ini file, and all tutorials I have found so far is based on changing that file.</p> <p>I have found very little info, but it seems it is possible to use 'set include' I think, somehow!</p> <p>Please somebody out there hear my pain and write some steps on how to get me started and save me a lot of headache and misery of searching around. I have already searched for two days without luck.</p> <p>If you need to know anything else let me know...</p> <p>PS: I have a php page called query.php which prepares to search the mysql db and display results, so far.</p> <p>Thank you</p> http://stackoverflow.com/questions/1919793/zendnavigation-having-trouble-getting-breadcrumbs-to-render-using-multiple-cont 0 Zend_Navigation: Having trouble getting breadcrumbs to render using multiple containers meder 2009-12-17T06:11:08Z 2009-12-20T23:00:19Z <p>I'm trying to make breadcrumbs render in my application ( they don't show up anywhere, not even the homepage, which has a corresponding Zend Page Uri object ), which has multiple navigation areas - primary and utility. For the menu generation, I have a MenuController which I render with from within the layout using:</p> <pre><code>$this-&gt;layout()-&gt;utility = $this-&gt;action('render', 'menu', null, array('menu' =&gt; $this-&gt;utilityId)); $this-&gt;layout()-&gt;nav = $this-&gt;action('render', 'menu', null, array('menu' =&gt; $this-&gt;mainMenuId)); </code></pre> <p>The <code>utilityId</code> and <code>mainMenuId</code> properties are numbers, grabbed from a database.</p> <p>The Menu controller's render method just builds an array and creates a Zend Navigation object, then invokes setContainer and sets it to that container. This is pseudo code because it's rather long:</p> <pre><code>// MenuController.php private function renderAction() { $itemArray[] = array('label' =&gt; $label, 'uri' =&gt; $uri ); // in a loop $container = new Zend_Navigation($itemArray); if ( $container instanceof Zend_Navigation_Container ) { $this-&gt;view-&gt;navigation()-&gt;setContainer( $container ); $uri = $this-&gt;_request-&gt;getPathInfo(); $item = $this-&gt;view-&gt;navigation()-&gt;findByUri($uri); $item-&gt;active = true; } } </code></pre> <p>So this render method is called twice from within the layout for the utility and nav.</p> <p><strong>EDIT:</strong> I think the issue is that I need to specify the $container so my code would be</p> <pre><code>$this-&gt;navigation($container)-&gt;breadcrumbs(); </code></pre> <p>However because I'm using <code>$this-&gt;action('render', 'menu' )</code> the <code>$container</code> variable is set there and not returned, is there a way I can specify the container some other way? Possibly using <code>$this-&gt;layout()-&gt;nav</code> and a property in that which points to the container. </p> <p><a href="http://framework.zend.com/issues/browse/ZF-6865" rel="nofollow">This</a> looks like it's the same issue and someone suggests setting/getting them with <code>Zend_Registry</code>, perhaps I'll try this out.</p>