Plugin Directory

Changeset 1146816


Ignore:
Timestamp:
04/27/2015 08:44:56 AM (11 years ago)
Author:
exxica
Message:

v1.1.8.1

Location:
exxica-social-marketing
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • exxica-social-marketing/tags/1.1.8.1/README.txt

    r1142589 r1146816  
    4545This plugin is a free 45 days trial version.
    4646
     47After that it's €9.99/month.
     48
    4749== Installation ==
    4850= Automatic installation =
     
    6062
    6163== Frequently Asked Questions ==
     64= What is the requirements of my server? =
     65Our plugin uses PHP cURL (http://php.net/manual/en/book.curl.php) to transfer publication data to our server, this is the only thing that is required by your server.
     66
    6267= What if I have discovered a bug? =
    6368If you have discovered a bug or something that you are not happy with, please let us know at support@exxica.com.
    6469
    6570= I have authorized, but my settings page is not showing any publishing options, why? =
    66 Did you remember to press the **Refresh** link? This will sync your server to ours. Enabling your publishing options.
     71Did you remember to press the **Refresh** link? This will sync your server to ours and enabling your publishing options.
    6772
    6873= Why isn't Social Marketing Scheduler available in my language? =
    6974We only have capacity to translate this plugin for English and Norwegian users. If you wish to contribute, please feel free to do so by using a gettext translator (www.poedit.net) and sending the files to us (.mo and .po).
     75
     76= Why can't I delete publications that's been published? =
     77You cannot delete them after their time has expired (and they are published) because we think you should have a record of what you have published at any time. There may be a feature in the future to give you an option. But generally we recommend keeping all publications on record, that way you can duplicate old publications, and see how often you've posted them before and with what text or image. You can, of course, remove publications before they publish.
    7078
    7179== Screenshots ==
     
    7886
    7987== Changelog ==
     88= 1.1.8.1 =
     89- Added check for PHP cURL.
     90- Updated FAQ.
     91
    8092= 1.1.8 =
    8193- Updated for WP 4.2.
     
    140152
    141153== Upgrade Notice ==
     154= 1.1.8.1 =
     155Added requirement. Update recommended.
     156
    142157= 1.1.8 =
    143158Minor patch. Update recommended.
  • exxica-social-marketing/tags/1.1.8.1/admin/class-exxica-social-marketing-handlers.php

    r1122141 r1146816  
    341341    public function create_post_data()
    342342    {
     343        $return = array( 'success' => false );
    343344        if($this->loaded == true) {
    344345            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    412413                ));
    413414            }
    414         } else {
    415             $return = array( 'success' => false );
    416415        }
    417416        $this->return_data( $return );
     
    428427    public function update_post_data()
    429428    {
     429        $return = array( 'success' => false );
    430430        if($this->loaded == true) {
    431431            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    499499                ));
    500500            }
    501         } else {
    502             $return = array( 'success' => false );
    503501        }
    504502        $this->return_data( $return );
     
    515513    public function destroy_post_data()
    516514    {
     515        $return = array( 'success' => false );
    517516        if($this->loaded == true) {
    518517            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    556555                ));
    557556            }
    558         } else {
    559             $return = array( 'success' => false );
    560557        }
    561558        $this->return_data( $return );
     
    578575        header('Content-Type: text/html');
    579576        echo json_encode( $return );
    580         die();
    581577    }
    582578
  • exxica-social-marketing/tags/1.1.8.1/admin/partials/exxica-social-marketing-admin-display.php

    r1142589 r1146816  
    1313 */
    1414 ?>
     15<?php if(!function_exists('curl_version')) : ?>
     16    <h1 style="color:red;">WARNING: PHP cURL is disabled on your server.</h1>
     17    <p>Exxica Social Marketing Scheduler requires cURL to work. Please consult your hosting provider to turn on PHP cURL.</p>
     18<?php else : ?>
    1519<table style="width:100%;background-color:#fff;border:1px solid #ddd;padding:10px;">
    1620    <tbody>
     
    397401    </tbody>
    398402</table>
     403<?php endif; ?>
  • exxica-social-marketing/tags/1.1.8.1/exxica-social-marketing.php

    r1142589 r1146816  
    1616 * Plugin Name:       Exxica Social Marketing
    1717 * Description:       A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website.
    18  * Version:           1.1.8
     18 * Version:           1.1.8.1
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing-activator.php

    r1122141 r1146816  
    3030        $sql = '';
    3131       
    32         $latest_version = '1.1.7.2';
     32        $latest_version = '1.1.8.1';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing-handlers.php

    r1033790 r1146816  
    919919    public function sendExternalData( $doAction = 'create', $input = array() )
    920920    {
    921         $raisedError = false;
    922921        if( $doAction == 'create' ) {
    923922            foreach( $input['data'] as $item ) {
     
    977976            }
    978977        } else {
    979             $out = array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') );
    980             $raisedError = true;
     978            return array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') );
    981979        }
    982980
     
    996994        $to = "http://api.exxica.com/publisher/exxica/publish";
    997995        //$to = "http://api.exxica.com/publisher/test/publish";
    998         if(!$raisedError) $out = $this->postData( $to, $atts );
    999996       
    1000         return $out;
     997        return $this->postData( $to, $atts );
    1001998    }
    1002999
  • exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing.php

    r1122141 r1146816  
    6161
    6262        $this->plugin_name = 'exxica-social-marketing';
    63         $this->version = '1.1.7.2';
     63        $this->version = '1.1.8.1';
    6464
    6565        $this->load_dependencies();
  • exxica-social-marketing/trunk/README.txt

    r1142589 r1146816  
    4545This plugin is a free 45 days trial version.
    4646
     47After that it's €9.99/month.
     48
    4749== Installation ==
    4850= Automatic installation =
     
    6062
    6163== Frequently Asked Questions ==
     64= What is the requirements of my server? =
     65Our plugin uses PHP cURL (http://php.net/manual/en/book.curl.php) to transfer publication data to our server, this is the only thing that is required by your server.
     66
    6267= What if I have discovered a bug? =
    6368If you have discovered a bug or something that you are not happy with, please let us know at support@exxica.com.
    6469
    6570= I have authorized, but my settings page is not showing any publishing options, why? =
    66 Did you remember to press the **Refresh** link? This will sync your server to ours. Enabling your publishing options.
     71Did you remember to press the **Refresh** link? This will sync your server to ours and enabling your publishing options.
    6772
    6873= Why isn't Social Marketing Scheduler available in my language? =
    6974We only have capacity to translate this plugin for English and Norwegian users. If you wish to contribute, please feel free to do so by using a gettext translator (www.poedit.net) and sending the files to us (.mo and .po).
     75
     76= Why can't I delete publications that's been published? =
     77You cannot delete them after their time has expired (and they are published) because we think you should have a record of what you have published at any time. There may be a feature in the future to give you an option. But generally we recommend keeping all publications on record, that way you can duplicate old publications, and see how often you've posted them before and with what text or image. You can, of course, remove publications before they publish.
    7078
    7179== Screenshots ==
     
    7886
    7987== Changelog ==
     88= 1.1.8.1 =
     89- Added check for PHP cURL.
     90- Updated FAQ.
     91
    8092= 1.1.8 =
    8193- Updated for WP 4.2.
     
    140152
    141153== Upgrade Notice ==
     154= 1.1.8.1 =
     155Added requirement. Update recommended.
     156
    142157= 1.1.8 =
    143158Minor patch. Update recommended.
  • exxica-social-marketing/trunk/admin/class-exxica-social-marketing-handlers.php

    r1122141 r1146816  
    341341    public function create_post_data()
    342342    {
     343        $return = array( 'success' => false );
    343344        if($this->loaded == true) {
    344345            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    412413                ));
    413414            }
    414         } else {
    415             $return = array( 'success' => false );
    416415        }
    417416        $this->return_data( $return );
     
    428427    public function update_post_data()
    429428    {
     429        $return = array( 'success' => false );
    430430        if($this->loaded == true) {
    431431            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    499499                ));
    500500            }
    501         } else {
    502             $return = array( 'success' => false );
    503501        }
    504502        $this->return_data( $return );
     
    515513    public function destroy_post_data()
    516514    {
     515        $return = array( 'success' => false );
    517516        if($this->loaded == true) {
    518517            $success = false; $message = ''; $data = array(); $to_exxica = array();
     
    556555                ));
    557556            }
    558         } else {
    559             $return = array( 'success' => false );
    560557        }
    561558        $this->return_data( $return );
     
    578575        header('Content-Type: text/html');
    579576        echo json_encode( $return );
    580         die();
    581577    }
    582578
  • exxica-social-marketing/trunk/admin/partials/exxica-social-marketing-admin-display.php

    r1142589 r1146816  
    1313 */
    1414 ?>
     15<?php if(!function_exists('curl_version')) : ?>
     16    <h1 style="color:red;">WARNING: PHP cURL is disabled on your server.</h1>
     17    <p>Exxica Social Marketing Scheduler requires cURL to work. Please consult your hosting provider to turn on PHP cURL.</p>
     18<?php else : ?>
    1519<table style="width:100%;background-color:#fff;border:1px solid #ddd;padding:10px;">
    1620    <tbody>
     
    397401    </tbody>
    398402</table>
     403<?php endif; ?>
  • exxica-social-marketing/trunk/exxica-social-marketing.php

    r1142589 r1146816  
    1616 * Plugin Name:       Exxica Social Marketing
    1717 * Description:       A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website.
    18  * Version:           1.1.8
     18 * Version:           1.1.8.1
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing-activator.php

    r1122141 r1146816  
    3030        $sql = '';
    3131       
    32         $latest_version = '1.1.7.2';
     32        $latest_version = '1.1.8.1';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing-handlers.php

    r1033790 r1146816  
    919919    public function sendExternalData( $doAction = 'create', $input = array() )
    920920    {
    921         $raisedError = false;
    922921        if( $doAction == 'create' ) {
    923922            foreach( $input['data'] as $item ) {
     
    977976            }
    978977        } else {
    979             $out = array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') );
    980             $raisedError = true;
     978            return array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') );
    981979        }
    982980
     
    996994        $to = "http://api.exxica.com/publisher/exxica/publish";
    997995        //$to = "http://api.exxica.com/publisher/test/publish";
    998         if(!$raisedError) $out = $this->postData( $to, $atts );
    999996       
    1000         return $out;
     997        return $this->postData( $to, $atts );
    1001998    }
    1002999
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing.php

    r1122141 r1146816  
    6161
    6262        $this->plugin_name = 'exxica-social-marketing';
    63         $this->version = '1.1.7.2';
     63        $this->version = '1.1.8.1';
    6464
    6565        $this->load_dependencies();
Note: See TracChangeset for help on using the changeset viewer.