Magento api: Invalid webservice adapter specified

api, magento, php

Solution

I've solved this from htaccess by turning off MultiViews option like this:

from

<Directory /var/www/magento>
            Options Indexes FollowSymLinks MultiViews
</Directory>

to

<Directory /var/www/magento>
            Options +Indexes +FollowSymLinks -MultiViews
</Directory>

Problem

Is there anything specific i need to do to get the api in magento working? I am visiting /api/soap/?wsdl on my local installation (1.7) and it returns the following error: ``` Invalid webservice adapter specified. ``` Everything looks enabled in the site but i cant find any info on other steps i need to do to get the api to work.

Original source

Related problems