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 Re: Open Discussion » Happy Now I Will Set Up Premium Section » 2012-04-04 00:12:39

adrian already check mine but still no luck sad im waiting for 1.0 now but i feel its gonna take sometimes to release it. now im paying for my dedicated server but no income in my website sad i really hope 1.0 will release soon.

#52 Re: Open Discussion » Happy Now I Will Set Up Premium Section » 2012-04-03 16:07:43

Hello there pls update me if you successfully setup premium section, because mine now my ccbill is not working in the script. I will wait for your update.

Thanks

#53 Troubleshooting » FTP Upload bugs? » 2012-03-31 03:08:33

cutetallguy8
Replies: 1

Some of the videos I upload using ftp is cannot read by Asp. it is just blank in all fields like Title, description and tag. I fillup the blank fields and try to add videos. but the error is this.

Query: INSERT INTO video SET user_id = 1, title = 'Jesica Cirio – Arabe – Bailando – 2010', slug = 'jesica-cirio-arabe-bailando-2010', description = '', type = 'public', add_date = '2012-03-31 06:02:59', add_time = 1333162979, size = , premium = '1', status = 4
Error Message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' premium = '1', status = 4' at line 9
Error Number: 1064

Pls help

#55 Troubleshooting » Frontpage Upload Error » 2012-03-28 00:31:47

cutetallguy8
Replies: 2

When I click Upload button on frontpage I got this error

VException [ 0 ]: VException [ 0 ]: exception 'Exception' with message 'Failed to get anonymous id! Application error!?' in /home/pinayski/public_html/asianxvideo.net/modules/video/components/upload.php:193 Stack trace: #0 /home/pinayski/public_html/asianxvideo.net/modules/video/components/upload.php(26): VComponent_video_upload->get_anonymous_id() #1 /home/pinayski/public_html/asianxvideo.net/modules/video/video.php(38): VComponent_video_upload->render() #2 /home/pinayski/public_html/asianxvideo.net/libraries/framework/module.php(24): VModule_video->render() #3 /home/pinayski/public_html/asianxvideo.net/index.php(61): VModule::load('video') #4 {main} ~ /home/pinayski/public_html/asianxvideo.net/modules/video/video.php [ 40 ]

/home/pinayski/public_html/asianxvideo.net/libraries/framework/module.php [ 26 ]

21 			try {
22 				require $module_file;
23 				$module_obj		= new $module_class();
24 				$module_obj->render();
25 			} catch(Exception $e) {
26 			    throw new VException($e);
27 			}
28 		} else {
29 			if ($module != '404') {
30 				VModule::load('404', true);
31 			} else {

    /home/pinayski/public_html/asianxvideo.net/index.php [ 61 ] » VModule::load(arguments)

Environment

Pls help

#57 Re: Troubleshooting » Put logo on mobile » 2012-03-22 12:38:45

I am sure my code if ok

<?php defined('_VALID') or die('Restricted Access!'); ?>
<!DOCTYPE html> 
<html> 
<head> 
	<title><?php if (isset($this->meta_title)): echo e($this->meta_title); else: echo e($this->mcfg['site_name']); endif; ?></title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="description" content="<?php if (isset($this->meta_desc)): echo e($this->meta_desc); else: echo e($this->mcfg['meta_desc']); endif; ?>" />
	<meta name="keywords" content="<?php if (isset($this->meta_keys)): echo e($this->meta_keys); else: echo e($this->mcfg['meta_keys']); endif; ?>" />
	<link rel="stylesheet" href="<?php echo TPL_REL; ?>/css/jquery.mobile-1.0b2.css" />
	<script type="text/javascript" src="<?php echo TPL_REL; ?>/js/jquery-1.6.2.min.js"></script>
	<script type="text/javascript">
	$(document).bind("mobileinit", function () { $.mobile.ajaxLinksEnabled = false;});
	</script>
	<script type="text/javascript" src="<?php echo TPL_REL; ?>/js/jquery.mobile-1.0b2.min.js"></script>
</head> 
<body>
<div data-role="page">
	<div data-role="header">
		<a href="<?php echo RELATIVE_URL; ?>/" class="logo"><img src="<?php echo TPL_REL; ?>/images/logo.png" alt="<?php echo e($this->cfg['site_name']); ?>" /></a>
<h1><?php echo e($this->title); ?></h1>
<a href="<?php echo MOBILE_REL; ?>/language/?url=<?php echo base64_encode(CURRENT_URL); ?>" data-icon="gear" data-role="button" data-rel="dialog" data-transition="pop" data-theme="b"  class="ui-btn-right"><img src="<?php echo MEDIA_REL; ?>/flags/<?php echo $this->flag; ?>.png" /></a>
		<a href="<?php echo MOBILE_REL; ?>/language/?url=<?php echo base64_encode(CURRENT_URL); ?>" data-icon="gear" data-role="dialog" data-rel="dialog" data-transition="pop" data-theme="b" class="ui-btn-right"><img src="<?php echo MEDIA_REL; ?>/flags/<?php echo $this->flag; ?>.png" /></a>
		<div data-role="navbar"><ul><?php echo p('menu_main', $this->menu); ?></ul></div>
		<form method="get" action="<?php echo MOBILE_REL; ?>/search/">
			<div data-role="fieldcontain">
  				<center><input type="search" name="query" id="search" data-theme="c" value="<?php if (isset($this->query)): echo e($this->query); endif; ?>" /></center>
			</div>
		</form>
	</div>
	<?php echo p('adv', 'mobile-header'); ?>

#58 Re: Troubleshooting » Put logo on mobile » 2012-03-22 12:32:15

ionut wrote:

both of you removed the <h1><?php echo e($this->title); ?></h1> after the code inserted for logo and the logo is covered by the button that changes language because you have data-role="dialog"  instead of data-role="button".

the final code should look like:

<a href="<?php echo RELATIVE_URL; ?>/" class="logo"><img src="<?php echo TPL_REL; ?>/images/logo.png" alt="<?php echo e($this->cfg['site_name']); ?>" /></a>
<h1><?php echo e($this->title); ?></h1>
<a href="<?php echo MOBILE_REL; ?>/language/?url=<?php echo base64_encode(CURRENT_URL); ?>" data-icon="gear" data-role="button" data-rel="dialog" data-transition="pop" data-theme="b"  class="ui-btn-right"><img src="<?php echo MEDIA_REL; ?>/flags/<?php echo $this->flag; ?>.png" /></a>

also do a smaller logo, that is way to big.

I already done what you said. and also make my logo smaller. But still the logo wont show sad http://asianxvideo.net/mobile/

#63 Re: Troubleshooting » Change color of the link » 2012-03-21 10:42:19

Actually I want the color of  my theme is Pink. How can I change that. I already made some changes to pink. But some color like the navigation is still green.

#64 Re: Troubleshooting » Change color of the link » 2012-03-21 10:40:36

If found  the input.submit but i cant see the color code that I need to change

#65 Troubleshooting » Put logo on mobile » 2012-03-21 02:48:49

cutetallguy8
Replies: 17

Hello does anyone here know how to put logo in mobile?

Thanks

#66 Troubleshooting » Change color of the link » 2012-03-21 02:23:32

cutetallguy8
Replies: 5

Please check this link http://asianxvideo.net/community/ how to change the color of the green buttons to Pink. I cant find it in css.

Thanks

#67 Troubleshooting » Premium User download video » 2012-03-20 12:41:13

cutetallguy8
Replies: 1

Is anyone here knows how to set that only premium users can download the video. and Ads does not appear if users log as premium.

Thanks

#68 Re: Development » Adult Script Pro 1.0 » 2012-03-20 12:38:55

version 1? any update? when it release?

#70 Troubleshooting » Add menu Link » 2012-03-19 15:24:23

cutetallguy8
Replies: 3

How to add menu link below the main menu. just like in http://www.collegefucktube.com/

#71 Re: Troubleshooting » Upload from FTP » 2012-03-16 12:59:45

Thanks A lot,  i will check it now, Thanks

#72 Re: Troubleshooting » Upload from FTP » 2012-03-16 02:09:00

Please check you email. Email sent.

Thanks

#73 Re: Troubleshooting » Upload from FTP » 2012-03-15 14:47:30

when I upload video tru FTP in admin area. It will says Successfully processed videos, But if you check and refresh the VIDEO it will not upload and the status of video in admin area is "Error". It is simply the videos are not working when im upload it in FTP

#75 Marketplace » Help me get a merchant specially Zombaio » 2012-03-13 15:20:16

cutetallguy8
Replies: 5

Hello Everyone,

*1st sorry for my bad english:P

Does anybody here can help me to approve in Zombaio? And also please give me advice, I can pay for your help. smile 200$ (After successfully Approve by Zombaio)


I need some who is located in USA, Canada, EU, Australia or Japan that can help me register a business so I can signup in Zombaio.

=============================================

Before you can start processing with Zombaio, please note:


    You must be located in the USA, Canada, EU, Australia or Japan --> I live in Asia (Philis). Anyone here can help/Assist me to apply Business in USA, Canada, EU,   Australia or Japan

    You must have a functional website --> I already have of-course running in ASP

    US companies and sole traders have to provide us with IRS form W-9. ---> Of course if im successfully have business in given country I will have this.

    Zombaio is a processor only for adult entertainment membership sites --> im ok with this
    We only accept merchants selling adult membership services (one time or recurring) --> im ok with this
    We encourage you to become an ASACP member, or at the very least follow ASACP Best Practices --> im ok with this
    Zombaio does not accept sites with: illegal content or animal sex --> im ok with this


Please have the following information available before you proceed:

    Business information, including tax # and license # --> For sure I will have this if I have company in given country
    Principal information, including ID#/passport # ---> is it ok my Philippine ID's
    Bank details, including SWIFT/BIC,ABA, account number etc. ---> is it ok my Philippine Bank Account

Board footer

Powered by FluxBB