Search Results

0
votes
2answers
704 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
6answers
387 views

Secure PHP file uploading

I'm trying to develop a file uploading module on our new site that allows you to upload any file to our servers. The uploaded file is uploaded to /files, in which the followin …
1
vote
1answer
124 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 …
0
votes

UTF-8, PHP and XML Mysql

It seems you are "double encoding" Otivägen. You get this behaviour if Otivägen already is UTF-8, and run utf8_encode() on it again. Example: $str = "Otivägen"; // already an UTF-8 …
1
vote

getting the “include path” to a file in PHP

Not sure if I understood exactly what you want, but how about: $root = $_SERVER['DOCUMENT_ROOT']; $pathWithLeadingSlash = substr(__FILE__, strlen($root)); // or $pathWithoutLe …