cpres
Forum Replies Created
-
Forum: Plugins
In reply to: [Slideshow Satellite] Satellite Embed Wizard FailsThanks for bringing this to attention @ghaynes2014 – I’ll look into why register_settings is causing an issue… I wonder if it can only get called once?
Does the error go away after you disabled the embed wizard?
Forum: Plugins
In reply to: [Slideshow Satellite] warning getimagesize / function.getimagesize2.3.2 has the fix!
Forum: Plugins
In reply to: [Slideshow Satellite] Exporting Satellite slides to another pluginWhen you say into another slideshow, do you mean a new WordPress install with the same plugin?
If so, I would move the /uploads/slideshow-satellite folder first, then I would use PHPMyAdmin to export the 2 satellite tables:
wp_satl_slides
wp_satl_galleriesAnd then open the PHPMyAdmin of the new server and run the import
That should work fine for the transition! I’ve heard of other successes and have done so myself. But there could be a step I’m missing. Try it out and let us know!
Forum: Plugins
In reply to: [Slideshow Satellite] Warning: getimagesize()2.3.2 should have this all fixed up, thanks for posting!
Forum: Plugins
In reply to: [Slideshow Satellite] warning getimagesize / function.getimagesizeWorking on this now! It’s a php.ini setting that could get updated as mentioned here
Now let’s see if I can get the fix in an update so all those other sites can get fixed.
Forum: Plugins
In reply to: [Slideshow Satellite] Warning: getimagesize()Looks like you’d have to edit the server’s php.ini file…do you have access to your php.ini? Sometimes you can access it straight through cPanel:
allow_url_include=1
In the meantime I’ll work on the next release to use the non http:// path for the url
Forum: Plugins
In reply to: [Slideshow Satellite] Not working on iPhoneLooks like I got to this too late, glad you found a solution!
Forum: Plugins
In reply to: [Slideshow Satellite] mysql_num_fields and mysql_list_fieldsUpdate the get_fields function to this:
function get_fields($table = null) { global $wpdb; if (!empty($table)) { $fullname = $table; if (($tablefields = $wpdb->get_results( 'SHOW COLUMNS FROM '.$table, OBJECT )) !== false) { $columns = count($tablefields); $field_array = array(); for ($i = 0; $i < $columns; $i++) { $fieldname = $tablefields[$i]->Field; $field_array[] = $fieldname; } return $field_array; } } return false; }Forum: Plugins
In reply to: [Slideshow Satellite] mysql_num_fields and mysql_list_fieldsoh crap. thanks for this. Looks like mysql-list-fields is deprecated so we’ve officially lost WordPress support for using it within the plugin.
http://php.net/manual/en/function.mysql-list-fields.php
Thanks for finding this! working on the fix now!
Forum: Plugins
In reply to: [Slideshow Satellite] Disappearing Slideshow on UpgradeYes, please email through the c-pr.es/contact form with the link. Make sure to put the plugin into debug mode since it sounds javascript related.
Forum: Plugins
In reply to: [Slideshow Satellite] remove some w3c errorsgreat question. I think I’ll probably have to fix this on the plugin side…In the meantime you’d edit the /views/orbit/display-caption file in order to clean that up.
Never seen that error before, thanks for the info!
Forum: Plugins
In reply to: [Slideshow Satellite] Not working on iPhoneAlright @thedashingfox – looks like this bug isn’t as widespread as I’d feared, I can’t seem to replicate it on my end. For example you probably will notice it’s not happening on this page:
http://c-pr.es/satellite/examples/simple-satellite/
Could you turn your plugin into Debug mode from the Advanced Config? That way I can follow along in the javascript and see which area the bug is coming from.
Cheers!
CForum: Reviews
In reply to: [Slideshow Satellite] [fixed] – Broken from upgradingThe fix is posted here:
https://wordpress.org/support/topic/disappearing-slideshow-on-upgradePlease re-upgrade to 2.3 and attempt this fix. If it is working I would be happy to have you reconsider the 1 star rating.
Thank you!
Forum: Plugins
In reply to: [Slideshow Satellite] Just wouldn't workThe fix is official:
https://wordpress.org/support/topic/disappearing-slideshow-on-upgrade
Forum: Reviews
In reply to: [Slideshow Satellite] [fixed] – Broken from upgradingActually, on a different theme I wasn’t seeing the slideshow display initially after upgrading, but then after I re-saved the gallery in the Dashboard and refreshed the page it worked. That’s the next step I’d have you try.