Adult Script Pro Community Forums

The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!

You are not logged in.

#51 2014-03-09 07:35:05

xpornclub
Member
From: California
Registered: 2012-01-01
Posts: 445
Website

Re: Nuevoplayer for Adult Script Pro

Nuevolab, I explain to DuttyRock how you set up my site.  Remember how you told me that you added something that would tell ipad and mobile devices to use html5 not flash on the main desktop version. Normal computers will still use flash I believe.

Offline

#52 2014-03-09 09:27:46

DuttyRock
Member
Registered: 2011-11-05
Posts: 740

Re: Nuevoplayer for Adult Script Pro

xpornclub wrote:

Nuevolab, I explain to DuttyRock how you set up my site.  Remember how you told me that you added something that would tell ipad and mobile devices to use html5 not flash on the main desktop version. Normal computers will still use flash I believe.

He stuck in ignorant mode, he feels the need to explain something when i feel the need to just pay and get it done. Guess it's a mental issue of his.

And Xpornclub, i mention your forum post to him an even tell him that you paid "extra for that service" an thats the service i want to pay for.... But nah, he wants to tell me his life story about coding and ASP and this and that and blah blah blah.... SMH.

Offline

#53 2014-03-13 07:16:53

DuttyRock
Member
Registered: 2011-11-05
Posts: 740

Re: Nuevoplayer for Adult Script Pro

symtab wrote:

I assume the anyads and same our overlay advertising cannot be used with exoclick/ero-advertising in-player ads. You can use their 300x250 ads.

Can i know why those two don't work with exoclick/ero-advertising in-player ads.??

"Imagine any dimensions, any HTML code, any javascript code, flash object, iframe that you can set for video advertising!"

"This amazing plugin allows
to show any html, javascript or
flash ad before video starts
and / or on each player's
pause event."

Last edited by DuttyRock (2014-03-13 07:21:39)

Offline

#54 2014-05-12 13:55:51

Eri
Member
Registered: 2011-03-18
Posts: 977

Re: Nuevoplayer for Adult Script Pro

Trying to make the html5 player available on my ipad but do not work sad

Also just checked a website that use nuevo player do not work http://www.pornboro.com/26503/groupie-s … d-bouncer/
And they use <html5> http://www.pornboro.com/modules/video/p … p?id=26503


Best Adult Affilitate Network:
ExoClick
Best Deals on Dedicated Servers - CDN
INXY

Offline

#55 2014-05-12 15:19:29

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Nuevoplayer for Adult Script Pro

Video is playing in html5 browsers on your site, Mr Eri. It's playing also on my real iPad device I luckilly have. Maybe only streaming is bit slow, but it's server and location case, not a player. There's nothing wrong with player, Eri.
If you can't watch it, the only possible reason is that you try to access your website on iPad without "www" prefix.
Javascript and also search engines are very restrictive about "www" prefix. They treat websites with and without "www" as 2 different sites. In case of javascript it throws Same Origin Policy error when player comes from one url and configuration file from other.
Website address based on ASP script is defined for one website URL, later used as BASE_URL global variable.
If such global variable is set with "www", also website should be accessible only with "www".

This is basic webmaster knowledge from years to know and to apply code to have website accessible from one URL schema only (with or without "www"), never from both.

There are thousands of examples on internet how to redirect website without "www" to one with "www" and opposite. This is absolute must for today. Don't forget that also search engines may treat your site as 2 different websites and find it as one big duplicate if it is accessible as 2 different UR schema.
So it's important not only for player, but also for other even more important things.
Your site pornboro is accessible both with and without "www". This is bad! Really bad.

This is also request to Symtab, to prepare his script in the future, so website with his script was accessible only as one possible general URL, just like defined for BASE_URL global variable.

BTW.
In upcoming version 8 of Nuevoplayer it will be not possible to access Nuevoplayer configuration php file. This will be restricted for anyone who wish to preview file and find all Nuevoplayer settings including video paths. HTMl5 player will be 10 times better.

Last edited by Nuevolab (2014-05-12 19:07:17)

Offline

#56 2014-05-13 16:46:28

Eri
Member
Registered: 2011-03-18
Posts: 977

Re: Nuevoplayer for Adult Script Pro

ATM i am using Nuevo Player with CDN if i host it where php files are the server will be down in 5 min. I have already a mobile site but i was thinking to redirect tablet users to main site and support html5 but this is not possible becasue i have to host player where config.php is.

Also i have removed the www. years ago becasue i was getting duplicate links from google webmaster tools.

Is there a way to use nuevo html5 with the config file in an other server and player on CDN?


Best Adult Affilitate Network:
ExoClick
Best Deals on Dedicated Servers - CDN
INXY

Offline

#57 2014-05-13 19:06:05

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Nuevoplayer for Adult Script Pro

Video files location do not matter for playback and player files. Video file can be located anywhere, must be only accessible public.
And this is script or custom user's settings how files are assigned for player. ASP script already allows to use external URL for video.
Allows to use rtmp protocol as well. Nuevoplayer takes video files settings from AdultScript. So this is rather how script handle videos, or how information about videos are stored and extracted by ASP script.

I think you didn't understand about "www" and non "www" address.
Your website is accessible both with "www" and without. Really this is not comlicated to type URL in address bar and check it.
There is no redirection from non www to url with "www" or opposite.
You need to understand it though it's really bit late...


Just test yourself your video:   

http://www.pornboro.com/26941/
http://pornboro.com/26941/

Both URLs are working and this is bad.
So also search engines see both, and this is duplicate.

In your confiuration you have URL defined with "www" and only such url should work.
URL without "www" should redirect to one with "www", other way your site is one big duplicate and html5 player won't work if video page URL is without "www". Thisviolates javascript Same Origin Policy.
Sorry but I don't have more time to explain such basic things.

Offline

#58 2014-05-13 22:00:11

xpornclub
Member
From: California
Registered: 2012-01-01
Posts: 445
Website

Re: Nuevoplayer for Adult Script Pro

Yeah just use the htaccess to always redirect to www when non www is typed.

Something like this

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L] 

Last edited by xpornclub (2014-05-13 22:00:57)

Offline

#59 2014-05-13 22:22:58

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Nuevoplayer for Adult Script Pro

It's not correct. Still URL without "www" is accessible. Why don't you check URL?
Or maybe this is missunderstanding abotu websie> I write about pornboro site.
If it's not yours then diregard my message. This is other client's trouble then.
xpornclub doesn't even use custom html5 player, it use mobile template with direct mp4 link.

Last edited by Nuevolab (2014-05-13 22:29:27)

Offline

#60 2014-05-13 22:50:25

xpornclub
Member
From: California
Registered: 2012-01-01
Posts: 445
Website

Re: Nuevoplayer for Adult Script Pro

Yeah i changed it for mobile redirect now, but I used to use the custom html5 player you added a while back.

Offline

#61 2014-05-14 15:39:29

symtab
Administrator
Registered: 2010-08-23
Posts: 7,501
Website

Re: Nuevoplayer for Adult Script Pro

To redirect non-www to www with a 301 code you can use:

    RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
    RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]

Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds

Offline

#62 2014-05-19 00:19:39

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Nuevoplayer for Adult Script Pro

And opposite from www to non-www rewrite rule is

    RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com [NC]
    RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]

I'm sure Symtab knows how important is to have one of mentioned redirections.

Offline

#63 2014-05-19 09:51:20

Eri
Member
Registered: 2011-03-18
Posts: 977

Re: Nuevoplayer for Adult Script Pro

pornboro.com is not my site smile, it was an other example that do not work with html5

My site is alotporn.com


Best Adult Affilitate Network:
ExoClick
Best Deals on Dedicated Servers - CDN
INXY

Offline

#64 2014-05-19 22:24:44

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Nuevoplayer for Adult Script Pro

Eri wrote:

pornboro.com is not my site smile, it was an other example that do not work with html5

My site is alotporn.com

On your website you have "Flash only" type of player, so it can't play html5.
From Nuevoplayer 6 or 7 there is option to set player type in admin.

Offline

Board footer

Powered by FluxBB