
Andrew Fields
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 9
Activity overview
Latest activity by Andrew Fields-
Andrew Fields created a post,
How to get all the tasks attached to a specific AppItem.
I have spent the last 4 hrs trying to figure out how to get the list of Tasks that reference a specific AppItem. The following do NOT work: // Doesn't work // $tasks = PodioTask::get_all(array( // ...
-
Andrew Fields commented,
For the people that have been requesting this feature and keep "voting" on these items...if you are new to Podio, get used to waiting FOREVER to get responded to in any way other than "this is a gr...
-
Andrew Fields commented,
I agree. This is a critical feature. As is, it is lame to have it open in Safari since most of the functionality does NOT exist in Safari. Not sure why it doesn't open the Google Drive app by DEFAU...
-
Andrew Fields commented,
It has now been 2.5 years, STILL no re-orderable columns. At this point, I don't think we will ever get it. Do I need to start looking for a platform that listens to its PAYING userbase? Perhaps i...
-
Andrew Fields commented,
Any word on this? I'm shocked this doesn't exist in Podio. I just purchased Podio and am not pleased the most basic security doesn't exist (as a developer, when I wrote an app recently for a client...
-
Andrew Fields created a post,
How to update profile avatar image with PHP
How do I update the profile avatar image using PHP. This doesn't work: $puup = PodioUser::update_profile(array( "avatar" => $fileid, )); This doesn't work: $pcu = PodioContact::update($profile_id, ...
-
Andrew Fields commented,
I figured it out. When PodioFile::upload() is called, "$filepath" must be the FULLPATH TO THE FILENAME, not just the "directory" the file is in. Of course, this sort of error could be *easily* avoi...
-
Andrew Fields created a post,
Attempting to upload a file
I'm attempting to upload a file using the following code: $pi = pathinfo($fpImg); $dirname = $pi['dirname']; $basename = $pi['basename']; $pf = PodioFile::upload($dirname, $basename); I am using se...
-
Andrew Fields commented,
I am trying to write a PHP app to update External User avatar images. It seems external users don't always set their avatar images and I would like to do that FOR them by setting their avatar image...