Request Info


Tips and Tricks

How to: Embed a mini flipbook

Q: Can I embed your player on our website?

A: if you look beside the thumbnail of the Issue you want to embed (in the Turn-Page system) you will see the ‘embed’ options. both of those options (cover and mini-flipbook) will give you full embed codes that you can place on your website for people to view and click to see the full size version of the Turn-Page (ex: www.terrasanctaguild.com). If you want to embed the full Turn-Page in your website, you will have to have someone on your side create an iframe to place the Turn-Page in (ex: www.ceremonymagazine.com). Then it can be placed directly into your website.

E’Mail Campaign

I’m a new customer. When I set up the new email campaign, it all goes perfect but doesn’t actually queue or send the e-mails.

——————

Hi,
I just took a look at your subscribers list and it looks like none have yet to be verified.
In order for our system to send an email, the subscriber must qualify these 3 conditions:

  • opted-in
  • active
  • email verified

you’ve got 2 of 3 :)

During the import stage, you can override the default by setting all to “verified”, but we recommend actually sending a verification link to each. There’s a batch way to do this:

List all your subscribers by only selecting the Title in the Manage Subscribers page

select the first checkbox to “select all” subscribers.

At the bottom of the page, you’ll see a “Resend Validation Request to Selected” under “POWER TOOLS” – this will send the validation email to all subscribers with a link that when clicked lets our system know that this is a valid email. From that point on, the subscriber will be considered verified

I hope that answers your question.

Let us know if you have any more

Regards

With an iframe, if the full page icon was enabled would it launch?

Q: If we were to place a Turn-Page in an iframe, would the full screen option still be available? If so, how would it work? Would it still go to full screen, or simply go to full screen within the iframe?

A: it should take over the whole screen. There may be some browser restrictions on it but i don’t suspect…

this has been confirmed to work :)

Changing the publish date on an issue

Hi,

A customer made an error in the PDF file for 8/24 and wants to send a replacement. If I upload it now, it will become the “most current issue” even though it is 2 days old. Is there anyway to replace the 8/24 issue in the archives with the new one? What is the best way to handle a situation like this with a daily newspaper? I can see this will come up every now and then…

Thanks,

John Adams

Hi,
simply change the publish date to the correct publish date when managing the title’s issues

There’s an “edit” link next to the publish date that will display a calendar when clicked.

the most recent issue simply grabs the one with the newest publish date, so you can change them all around as you see fit.

hope that answers your question

How to: setup single pass-phrase for your title

So you don’t need a full blown authentication to allow access to your title, but you also don’t want just anyone to gain access and read your confidential document. Single pass-phrase is the answer.

Using the Title Authentication module, here are the settings:


Remote script: http://www.turn-page.com/clients/single_pass/xxxx (where xxxx is the case-sensitive pass-phrase)

String returned on success: success

username field name: passphrase

password field name: check box for “not needed”

That’s it!

How to: Setting up Title Authentication

With this feature, you can password protect your titles. This feature is intended to leverage your existing database of registered members. Rather than give us access to your database, you can setup a simple script on your site, accessible over the web that our system can securily POST information to.

Let’s take a fictional website “www.abc-co.com” as an example.

In this example:

  • ABC Co. has a database of users who can gain access to a specific title
  • ABC Co. creates a script that checks if a user has the necessary privileges
  • the remote login script is http://www.abc-co.com/loginscript.php
  • the username field name is uname
  • the password field name is pword
  • the string returned on success is yipee!
  • Our system POSTS a form that can be assumed to look like

  • <form method=”post” action=” http://www.abc-co.com/loginscript.php”>
    <input type=”text” name=”uname” value=”bob” />
    <input type=”password” name=”pword” value=”bob123″ />
    </form>

  • since user bob’s password really is “bob123″, the script prints out “yippee!”. Whatever is printed out by the script will be returned as the value, so make sure to not print out any html.

Our system will send the form using POST method (not GET) only from our backend, so you need not worry that anyone will ever see this script via client-side scripting.

An example php script: (for learning purposes only)

<?php
//open connection to database
mysql_connect(…);
//select your database
mysql_select_db(…);
$sql = “SELECT count(<li>) FROM `user_table` where username=’” . $_POST['uname'] . “‘ AND password=’” . $_POST['pword'] . “‘ LIMIT 1″;
$result = mysql_query($sql);
$count = mysql_result($result,0);
if($count==1){
echo “yipee!”;
} else {
echo “username/password combo not found”;
}
?>

How to: Harvest emails (leads) using the Title Authentication module

Normally, the Title Authentication module is used as an API to log users in to your publications with their username/password on your system.

However, the same tool can be used to harvest emails.

We have a built-in hosted script so you don’t have to host your own. What this script will do is send you an email with the user’s email address.

The settings are as follows:

Your remote login script: http://www.turn-page.com/clients/generic_emailer/you@domain.com (replace “you@domain.com” with your email address)

string returned on success: success

username field name: email

password field name: (check box for “not needed”)

you can then enter any custom message you like (this field can include html if you wish to add an image or logo)

finally the website field can presumably be set to your home page (or left blank)

Now when users load any issue with these settings, they’ll be prompted to enter a single field – their email address. If it’s a properly formatted email, the will gain access to the issue and you will receive an email with their email address

That concludes our “built-in” email harvesting, but of course you can host your own script that does much more with the entered email, such as adding it to your database as a “lead”.

Del.ici.ous Digg Facebook Linked In StumbleUpon Twitter