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.
I tested the search at your own adultscriptpro:
http...demo.adultscriptpro.com/
***and even your own demo site has the same bug with IE
Search result in IE :
URL:
http...demo.adultscriptpro.com/search/video/?s=ass
No videos found while searching for ''!
Search result in Firefox:
http:..demo.adultscriptpro.com/search/video/ass/
NO ERRORS PAGE IN IE as you asked to check
This is the code for search:
<!--START searchbox -->
<div id="searchbox">
<div id="searchLeft"></div>
<div id="searchCenter">
<form id="search-form" action="/searchEngine/search/video/" method="get">
<input id="search-query"
class="query" type="text"
value="Search porn here"
name="s"
style=" font-size:17px;color:#F30; background-color: clear; width:360px; height:25px; float:left; margin-top:20px;background: none repeat scroll 0 0 transparent ;border:0 none; "
onblur="javascript: if (this.value=='') { this.value='Search porn here'; };" onfocus="javascript: if (this.value=='Search porn here') { this.value=''; };" value="Search porn here"
/>
<div id="searchRight">
<input id="search-submit" class="go" type="submit" value="" style=" float:right; border:0 none; height:55px; width:100px; background: none repeat scroll 0 0 transparent ;cursor: pointer; " />
</div>
</form>
</div>
<!--END searchbox -->
Do you see what is generating the error?
GREETINGS MS_DA
I believe the main idea is that the web site owner is not legally held responsible if they can say that it is not their doing, but the site members fault if they ever get busted, that is their line of defense. It's not hard to imagine that many must create fake users to initially populate their site and so on... I think maybe the main catch in the above article is that they where foolish enough to stamp their website logo on top of videos they never bought. Even youtube is kind of like that(not having to take the blame), lucky them with their millions of all real members, although they are massive#1 i read that they are actually loosing money, a few millions but that is not that much for the google goliath, i love their mission to free speech(although i have read stories of the FBI contacting users who are too vocal about issues that are too actual and dead on the eye of the rye)
I actually have trouble imagining who would waist time uploading porn to a porn tube site...besides paysites who are fishing to attract business to their url.
I really have no idea yet of the world's true character on the web, nyphos who like to share just for fun, does that really exist in such outstanding numbers?
I was surfing the web and i found this interesting article about pirating porn on the web.
I'm sure its done by many across the web by the million porn tubes out there, read : http://www.xbiz.com/news/136128.
Thank you for the extra explanation.
Can you please tell where is .tpl for page that indicates:
We're sorry, the page you requested cannot be found!Page title '404 Not Found'
Symtab, yes it always works normal when i write regular 'domain.com/search/video/search-string/' in url in IE
Where is page .tpl that indicates:
We're sorry, the page you requested cannot be found!
...
All good in Firefox, but search results only work half the time or less in IE (checking with ie7)
I verified url and when no result it reads like this:
httpwww.website.com/searchEngine/search/video/?s=asian
httpwww.website.com/searchEngine/search/video/?s=amateur
And i get this result in result page:
No videos found while searching for ''!
Firefox url's and when ie working url reads like this:
httpwww.website.com/searchEngine/search/video/asian/
This is chinese, incomprehensible, so i will forget about it, and use absolute url's with http://.........
And thats the end of that! QUICK FIX
LOL i know it doesn't work by this time
Can you tell me why it starts not work on page 2? Its working on page1! there is a logic.
Noticed something else, not even links i added work on pagination page#2 and highier
<a class="Links" href="../../../mypages.php" >
My set up worked for ALL other scriptpro pages, so WHY IS IT DOING THAT,where is the logic?
---->SOMETHING IN THE PAGINATION AJAX CODE ?,
where is the code that creates this pagination for video_category.tlp & video_tag.tlp?
Maybe i can modify that code, that part that just seems to be pointing to the css folders in adultscript?
(/adultscriptpro/templates/default-pink/css/style.css?v3") It's not magic that doing this there is a logic.
----->This is one of the last things i have to do and project will be finished. You will have peace and many thank you's
The actual adultscriptpro script is in a sub-folder of the main site.
From what i am observing the original style.css sheet from www.mysite.com/adultscriptpro/templates/default-pink/css is linking fine
-> the css in header.tpl goes as follow:<link rel="stylesheet" href="/adultscriptpro/templates/default-pink/css/style.css?v3" type="text/css" media="all" />
The css styles that dont work are the ones i added that are in my site root folders, exterior to adultscriptpro
-> the css in header.tpl link go as follow:<link rel="stylesheet" type="text/css" href="../../../mycssfolder/myStyles.css" />
you see the-> ../../../ i added for styles to link into adultscriptpro template, it works for all other pages except pagination after page1 for video_tag.tlp and video_category.tlp.
i think that somehow it is not connecting because of the ../../../ folder hierarchy, so i must wonder if the pagination after page1 is not in another folder hierarchy??? or maybe it reloads with another header ??? There is a disconnection at that point.
My firebug console even says "This element has no style rules." for those parts.
In case it helps here is code for video_browse.tlp that has no pagination problem and is working perfect
<div class="clear-left">
</div>
<?php echo p('adv', 'video-browse-bottom'); ?>
<div class="pagination">
<ul>
<?php echo p('pagination', $this->pagination, build_url($this->order, $this->timeline, '', true)); ?>
</ul>
</div>
<?php else: ?>
<div class="none">
<?php echo __('no-videos'); ?>
</div>
<?php endif; ?>
Not sure exactly which line so here is code mentioning 'pagination' with surrounding lines
video_category.tlp:
<div class="clear-left">
</div>
<?php echo p('adv_category', 'video-category-bottom', array($this->cat_id)); ?>
<div class="pagination">
<ul>
<?php echo p('pagination', $this->pagination, build_url($this->order, $this->timeline, $this->slug, true)); ?>
</ul>
</div>
<?php else: ?>
<div class="none"><?php echo __('no-videos'); ?>
</div>
<?php endif; ?>
video_tag.tlp:
<?php endforeach; ?>
<div class="clear-left">
</div>
<div class="pagination">
<ul>
<?php echo p('pagination', $this->pagination, RELATIVE_URL.'/tag/'.$this->tag.'/#PAGE#/'); ?>
</ul>
</div>
<?php else: ?>
<div class="none"><?php echo __('no-tag', array($this->tag)); ?>
</div>
<?php endif; ?>
The categories <ul><li>... list on side of site shows 'All' as first option this links to
http://www.website.com/recent/ (it uses the video_browse.tlp.)
On this page pagination works normally going from first page to last page, and gives url
http://www.website.com.com/recent/2/
The rest of the categories when clicked use video_category.tlp and show a url such as
http://www.website.com/amateur(whatever category)/
The --> 'Recent' 'Popular' 'Being watched'... upper options all work fine also with my new css.
The problem is the pagination on this page(video_category.tlp) shows the next page as
http://www.website.com/recent/2/ but css missing so i suppose it is using another .tlp which one?, otherwise why doesn't it follow the style ???
The pagination also does this same thing after i go to second page of the tags page (video_tag.tpl)
Well its working now for some strange reason
I modified the style.css for video_view.tlp yesterday and when ever i clicked a thumb under 'related videos' it was not showing the same style.
Today it is working, it is not doing that, maybe it has something to do with the browser or server cache memory or whatever, its a mysterious tech thing !!!
On video_view.tpl, if i click one of the 'related' videos under the video that is playing the new video that starts to play(chosen from 'related videos') is using another style than the original video_view.tpl page, which .tpl is it using?
Can you please tell me what pages are:
1)video_browse.tlp is used for?
2)video_search.tlp-->results from search box?
3)video_category.tlp ?
smile ok sorry too, i'm going to need some pills if i have to look any longer for an answer, maybe that's the section that has to be filled, but i would not exactly know how for sure.
It does contain:
"$cmd = $php_cli_path.' '.ADMIN_DIR.'>>>>>>>>>>>>>>>>>>>>>/modules/grab/scripts/grab.php " THE PATH TO THE MASS EMBED MODULE
Ok thiva7 i appreciate your help but, you don't seem to have an answer so please...i get the impression we are making empty talk, please wait for symtab to give an answer.
I went directly to thumb folder according to thumb url
http://www.website.com/media/videos/tmb … /021/1.jpg
permission denied, if thats a ftp permission i have to set with filezilla is it dangerous to change permission, maybe it better to go to db?
These ar the 2 files you are talking about
video_feed.php:
<?php
define('_VALID', true);
define('_CONSOLE', true);
$base_dir = realpath(dirname(__FILE__).'/../');
require $base_dir.'/libraries/bootstrap.php';
set_time_limit(0);
$db = VF::factory('database');
$db->query("SELECT *
FROM #__video_feeds
WHERE status = '1'
ORDER BY last_updated ASC
LIMIT 1");
if ($db->affected_rows()) {
$options = $db->fetch_assoc();
$feed = VHelper::load('admin.rss.feed', TRUE);
$feed->set_options($options);
$feed->parse();
}
VF::close();
video_embed.php:
<?php
define('_VALID', true);
define('_CONSOLE', true);
$base_dir = realpath(dirname(__FILE__).'/../');
require $base_dir.'/libraries/bootstrap.php';
set_time_limit(0);
$php_cli_path = VF::cfg_item('php_cli_path');
$unique = time().'_'.mt_rand();
$gcfg = VF::cfg('module.grab');
foreach ($gcfg['urls'] as $name => $url) {
if ($url != '') {
$cmd = $php_cli_path.' '.ADMIN_DIR.'/modules/grab/scripts/grab.php '.$url.' '.$gcfg['user_id'].' '.$gcfg['category'].' 1 '.$unique;
exec(escapeshellcmd($cmd));
}
}
VF::close();
maybe i need to know the rest of the url of the admin Video> MassEmbed once fields&url are filled in?
http://www.yourdomain.com/admin/index.php?q=grab
??? I only guessing, sure of nothing