0
votes
3answers
29 views
How to optimize mysql full match
Hey guys, do you know some trick about how can I optimize more a full match search?
The code that I'm trying to optimize:
$do = $this->select()
->where('MATCH(`name`,`ort`) AGAINST( ? IN …
0
votes
1answer
15 views
Zend Framework SEO tips
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 …
0
votes
1answer
22 views
Zend_Auth - Be Able To Login With Both Email And Username
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.
Here …
1
vote
2answers
17 views
Zend_Form arbitrary number of key-value pair fields
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:
[_____] [+]
…
0
votes
1answer
19 views
Sphinx requirements, would it work on my Webhostings provider ?
I am still searching for a search engine to be used on my webhosting-providers server (one.com) and still haven't found any.
I have heard great things about Sphinx, what are the requirements to run …
2
votes
2answers
39 views
Zend Form: Checkbox element displays as hidden field?
I would like to add a simple check box to my form:
$element = new Zend_Form_Element_Checkbox('dont');
$element->setDescription('Check this box if you don\'t want to do this action.');
…
0
votes
2answers
16 views
Add DIR to application dir Zend Framework
Hi,
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" …
1
vote
1answer
36 views
Uploadify Minimum Image Width And Height
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 …
2
votes
1answer
48 views
Can I predict how large my Zend Framework index will be? (and some quick Q:s)
I have around 100thousand rows in a mysql table, where each row has about 8 fields.
I have finally got the hold on how to use Zend Lucene to index and search data from a mysql table.
Before I fully …
1
vote
1answer
39 views
Little help with making this basic search function work (Zend Lucene)
I have two php files so far, test.php:
<?php
include("../config_conn_fordon_db.php");
include("../config_open_db.php");
// Fix Special Characters
mysql_query("SET NAMES …
0
votes
2answers
93 views
PHP loop, date sorting challenge…
I'm having trouble trying to figure out how to achieve this programming challenge in my Zend Framework application:
I need to create an array that looks like this:
$array = array(
0 => …
0
votes
2answers
39 views
Zend Cache Howto PHP
How can i do the followin tasks
public function addToCache($id,$items)
{
// in zend cache
}
public function getFromCache($id)
{
// in zend cache
}
The first method should take an id and items …
3
votes
1answer
37 views
Authentication methods for Zend Framework XML-RPC server
I have a Zend Framework application whose sole purpose is to serve as an XmlRpc / JSONRPC server.
I've mostly followed the philosophy from this guide for my implementation method. I overrode my …
-2
votes
3answers
47 views
How do I install Zend on my website and how do I test if it works ?
Background: I need to setup a search engine for my classifieds site, which is PHP and Mysql based.
I have downloaded Zend Framework and have no clue what to do with it.
My webhosting provider says …
0
votes
1answer
36 views
Problem with URL encoded parameters in URL view helper
So my problem is kinda weird, it only occurs when I test the application offline (on my PC with WampServer), the same code works 100% correctly online.
Here is how I use the helper (just example):
…
