0
votes
2answers
731 views
Getting basepath from view in zend framework
Case: you're developing a site with Zend Framework and need relative links to the folder the webapp is deployed in. I.e. mysite.com/folder online and localhost:8080 under …
0
votes
2answers
856 views
Style form elements in Zend Framework with a default style
I'm currently styling form elements with a custom CSS class to style text inputs differently, as in:
$submit = new Zend_Form_Element_Submit('login');
$submit->setLabel('Log in')
…
1
vote
1answer
138 views
SoapFault exception: [HTTP] Unsupported Media Type when accessing Java web-service from PHP
I'm trying to connect to a Java web-service using the Zend_Soap_Client from the Zend Framework v1.9.0:
<?php
include( 'Zend/Loader/Autoloader.php');
$autoloader = Ze …
