1
vote
1answer
171 views
Is there a good alternative to PHP’s SOAP extension?
I have a project which relies heavily on PHP's SOAP extension. It's great, and works wonderfully.
However, I have to deploy a version of the software on a server that does NOT have the exte …
0
votes
Integrate Doctrine with Zend Framework 1.8 app
As far as auto-loading is concerned, you can actually use the Doctrine loader with the new Zend_Loader_Autoloader stack quite easily. Take a look at …
2
votes
Zend url view helper - keeping existing params in a reversed route
The url helper will use the an existing parameter if it exists in the current request. It seems as if, in your particular case, the news_page param is not set in the request object. Se …
1
vote
Zend_Validate_Between strange error message
Zend_Form_Element_Select automatically adds an InArray validator to itself.
To set the error message for it, this should do the trick:
$element->getValidator …
3
votes
Why can’t I override the default validation error message?
The messages key in the validator array must be passed an array of key/value pairs, where the key is the validation message constant, and the value is your custom error message. Here's …
2
votes
Do I really need to switch from VARCHAR to VARBINARY for UTF-8 in Mysql & PHP?
Not necessarily.
MySQL's UTF-8 support is limited to only 3 byte UTF8, which includes everything upto and including the …
3
votes
Performance and bottle neck of Zend_Search_Lucene?
Zend_Search_Lucene is a pure PHP implementation of the Apache Lucene format. The currently (starting from ZF 1.6) supported Lucene index format versions are 1.4 - 2.3. For more informa …
4
votes
How do I write Routing Chains for a Subdomain in Zend Framework in a routing INI file?
Here's basically what you want, in INI format:
routes.b2b.type = "Zend_Controller_Router_Route_Hostname"
routes.b2b.route = "sales.sitename.com"
; you could specify a default module …
4
votes
Sql injection attempt PHP 5.2.6
The values may be escaped due to Magic Quotes being enabled in your server configuration. Magic quotes are considered very bad, basica …
5
votes
Linux tar command: compressing a directory but exluding subdirectories
You are looking for the --exclude arugment.
--exclude=PATTERN
Some users find `exclude' options confusing. Here are some common pitfalls:
…
1
vote
PHP Array of Objects Internal Navigation Pattern
Depending on the version of PHP you are running, the SPL provides a …
2
votes
File Upload and Unit Testing with Zend Framework
I would recommend taking a look at the unit tests from the Ze …
3
votes
What happens to the Zend Framework routing tables when you change the site to a subfolder?
The most likely cause of your problem is that you need to set the RewriteBase parameter in your .htaccess file.
Assuming your rewrite rules look something like thi …
1
vote
how to get zend studio autocomplete with codeigniter
As Peter's answer instructs, adding an include path is definitely the best way to go. However, this relies on the docblocks in the CI source code to be complete, accurate, and not ambiguous. For ex …
2
votes
How to exclude searching specified fields using Zend Search (Lucene)
There's currently no way to explicitly not search a field in Lucene's query language, or the Zend_Search_Lucene query constructing API.
However, you can explicitly lis …
