MichaelKaeser Posted May 27, 2014 Share Posted May 27, 2014 (edited) All of my workflows that are requesting data from external resources don't get response. I think there is nothing wrong with the workflows, since their authors confirm that they're working. Workflows tested are: caniuse v1.3 (https://github.com/willfarrell/alfred-workflows#caniuse-download) Fahrplan (https://github.com/josefweibel/Public-Transport-Timetable-Alfred-Workflow | http://www.josefweibel.ch/alfred/fahrplan/) Leo Dictionary (https://github.com/psistorm/alfredapp) openthesaurus (https://github.com/widmr/workflows/tree/master/openthesaurus) Package Managers v1.25 (https://github.com/willfarrell/alfred-workflows#package-managers-download) At the time of writing, I redownloaded the latest version from all of them. When I type the shortcut for one of the workflows, for a very short time there's a loading indication ("Updating database...", "Retrieving data from..." or similar) but as soon as I'm typing my request it stops and looks like this: Is it possible to get an error log or something which could help me understand what's going on? Or does somebody has another clue? - Alfred v2.3 (264) - Mac OS X 10.9.3 Edited May 27, 2014 by MichaelKaeser Link to comment
Andrew Posted May 27, 2014 Share Posted May 27, 2014 All of my workflows that are requesting data from external resources don't get response. I think there is nothing wrong with the workflows, since their authors confirm that they're working. Workflows tested are: caniuse v1.3 (https://github.com/willfarrell/alfred-workflows#caniuse-download) Fahrplan (https://github.com/josefweibel/Public-Transport-Timetable-Alfred-Workflow | http://www.josefweibel.ch/alfred/fahrplan/) Leo Dictionary (https://github.com/psistorm/alfredapp) openthesaurus (https://github.com/widmr/workflows/tree/master/openthesaurus) Package Managers v1.25 (https://github.com/willfarrell/alfred-workflows#package-managers-download) At the time of writing, I redownloaded the latest version from all of them. When I type the shortcut for one of the workflows, for a very short time there's a loading indication ("Updating database...", "Retrieving data from..." or similar) but as soon as I'm typing my request it stops and looks like this: Is it possible to get an error log or something which could help me understand what's going on? Or does somebody has another clue? If you open Console.app, do you see any errors listed there? Alfred doesn't provide any network APIs to workflows, so this issue will be outside of Alfred's control. Do you use any 3rd party firewall or a network proxy which could be getting in the workflow's way? [moving to Workflow help] Link to comment
jdfwarrior Posted May 27, 2014 Share Posted May 27, 2014 All of my workflows that are requesting data from external resources don't get response. I think there is nothing wrong with the workflows, since their authors confirm that they're working. Workflows tested are: caniuse v1.3 (https://github.com/willfarrell/alfred-workflows#caniuse-download) Fahrplan (https://github.com/josefweibel/Public-Transport-Timetable-Alfred-Workflow | http://www.josefweibel.ch/alfred/fahrplan/) Leo Dictionary (https://github.com/psistorm/alfredapp) openthesaurus (https://github.com/widmr/workflows/tree/master/openthesaurus) Package Managers v1.25 (https://github.com/willfarrell/alfred-workflows#package-managers-download) At the time of writing, I redownloaded the latest version from all of them. When I type the shortcut for one of the workflows, for a very short time there's a loading indication ("Updating database...", "Retrieving data from..." or similar) but as soon as I'm typing my request it stops and looks like this: Is it possible to get an error log or something which could help me understand what's going on? Or does somebody has another clue? - Alfred v2.3 (264) - Mac OS X 10.9.3 If you open Console.app, do you see any errors listed there? Alfred doesn't provide any network APIs to workflows, so this issue will be outside of Alfred's control. Do you use any 3rd party firewall or a network proxy which could be getting in the workflow's way? [moving to Workflow help] I would be willing to bet that this one isn't a firewall issue. Looking at those workflows, they all seem to be PHP based so I would guess PHP is the issue. Are you using a version of PHP other than the one that comes bundled with OSX in /usr/bin/php? Link to comment
MichaelKaeser Posted May 28, 2014 Author Share Posted May 28, 2014 In fact it isn't a firewall issue. I have a custom php.ini (/private/etc/php.ini) in which I uncommented those extensions: extension=php_mysql.dll extension=php_mysqli.dll extension=php_pdo_mysql.dll This is for working with virtualhosts. Not quite sure why they are blocking the requests of the workflows? So finally I just commented them out and it's working again. Thanks guys for the help! Link to comment
rice.shawn Posted May 29, 2014 Share Posted May 29, 2014 Those should be commented out no matter what because all .dll extensions for PHP are windows based (and I'm betting you're on a Mac if you're posting here). Unix based extensions (thus for Mac) are the ones that end in .so. So, use those instead. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now