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.

#1 2012-03-29 22:17:45

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Sitemap-video-1.xml not being read by Google

Please see screenshot:
http://screenshooter.net/9035582/utppnpk

Tried to delete it and regenerate and resubmit. Still get the same issue. The file does have information in it.

Offline

#2 2012-03-30 00:25:39

THS
Member
Registered: 2012-02-02
Posts: 313
Website

Re: Sitemap-video-1.xml not being read by Google

This video has malformed data for some reason.  It would appear that the xmlencoder is not fully escaping that in your description.  Either way, this is the offending video and line:

<loc>http://www.pornogoddess.com/10684/fully-loaded-scene-5/</loc>
<video:title>fully loaded scene 5</video:title>
<video:description>http://www.videosz.com/movie.php?dvd_id=4249&link;_id=23298&tracker;_id=</video:description>

The problem is with the &link; in that url.  If you remove that in your description from that video, all should work.

EDIT:  BTW, that is the only one in your sitemap so if you remove it and regen, all should be good.

Last edited by THS (2012-03-30 00:29:01)

Offline

#3 2012-03-30 02:03:28

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

So - deleted that video and any subsequent videos that had links in their descriptions. Deleted the sitemaps and regenerated them and resubmitted them. Same thing - same error on the same line with a different video.

Any other ideas?

Offline

#4 2012-03-30 07:26:02

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

It Happens To Me Also many times In google So Regenerate Sitemap And Resubmit The Sitemap And Wait for 1 Or 2 Days It Will Automatically Go Off. It Do Not go Insteadliy.



ful2fun.com
livesexpirates.com

Offline

#5 2012-03-30 07:33:13

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

Re: Sitemap-video-1.xml not being read by Google

Check admin/tools/components/sitemap.php. Do you have this code:

<video:description>'.htmlspecialchars($video['description'], ENT_QUOTES, 'UTF-8').'</video:description>',"\n";

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

Offline

#6 2012-03-30 13:21:11

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Ummm - I don't have tools in my admin folder - looked around too. Is that path correct?

Offline

#7 2012-03-30 13:28:25

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Found it - for reference - admin/modules/tools/components/sitemap.php

And no - don't have that line in there or in sitemap_video.php

Last edited by Pornogoddess (2012-03-30 13:31:03)

Offline

#8 2012-03-30 16:59:50

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

Re: Sitemap-video-1.xml not being read by Google

I dont know whats happening this is the second mistake i make like this with the paths sad I apologise. Do you have:

<video:description>'.$video['description'].'</video:description>',"\n";

?


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

Offline

#9 2012-03-30 18:28:33

THS
Member
Registered: 2012-02-02
Posts: 313
Website

Re: Sitemap-video-1.xml not being read by Google

In sitemap_video.php is where the code is.  It currently (RC4) is this:

echo '			<video:description>'.e($video['description']).'</video:description>',"\n";

It would appear it is not being escaped, which is causing the problem.   The other fields are not being escaped either unless the .e() is a reference to that function (I could not find it in the code with a very brief search).

Offline

#10 2012-03-30 19:39:44

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Thanks THS - mine is the same.

Any ideas Adrian?

Offline

#11 2012-03-30 19:43:32

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

@Pornogoddess. It happen To My Site Many Times After regenrating Sitemap It Goes Off In 2 Or 3 Days From Google. When they Crawl Again And We Should Wait For 1.0 All Bugs Will fix In It.


ful2fun.com
livesexpirates.com

Offline

#12 2012-03-30 19:52:42

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Hm - k - I will wait then and see if it fixes.

Offline

#13 2012-03-30 20:05:34

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

Just regenerate Sitemap Through Admin/tools And Resubmitted it and wait it will remove.



ful2fun.com
livesexpirates.com

Offline

#14 2012-03-31 13:48:21

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

Re: Sitemap-video-1.xml not being read by Google

So even if e() is used, it is not escaped. The e() function is actually a wrapper for htmlspecialchars() in libraries/framework/functions.php

if (version_compare(PHP_VERSION, '5.2.3', '>=')) {
    function e($string) {
        return htmlspecialchars((string) $string, ENT_QUOTES, 'UTF-8', FALSE);
    }
} else {
    function e($string) {
        return htmlspecialchars(htmlspecialchars_decode((string) $string, ENT_QUOTES), ENT_QUOTES, 'UTF-8');
    }
}

So it should escape any &.


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

Offline

#15 2012-03-31 14:04:53

THS
Member
Registered: 2012-02-02
Posts: 313
Website

Re: Sitemap-video-1.xml not being read by Google

Interesting.  I would like to know what is actually saved in the database for that files description.  PG, can you post that?

Offline

#16 2012-03-31 14:08:29

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

Re: Sitemap-video-1.xml not being read by Google

Or maybe its double escaped, that could also be the problem.


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

Offline

#17 2012-03-31 14:16:01

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

I deleted all the videos that had that link in it when I imported them. Can't view the database for it. If what Ful2Fun says is correct - the error now is old even after I have regenerated and resubmitted to Google? It shows the same error 146723 which is video # 7716 now and the following is the description in the database:
"Aaliyah Love fills her tight little holes with 2 toys at once! She plugs up her ass then takes a large purple dildo and pounds away! She moans really loud while her pussy drips everywhere! Stroke ur cock to this!"

Offline

#18 2012-03-31 17:46:11

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

What I Said Happened To me Its An Experience And Its Not That It Will Go Insteadly Google Change Its Algorithms Frequently So It can Change See How Many Pages You Submitted And How Many Indexed That only matters.



ful2fun.com
livesexpirates.com

Offline

#19 2012-04-05 03:13:23

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Ok It's been 5 days. Still have the same error after regenerating and resubmitting. Anything I can do to fix this?

Offline

#20 2012-04-05 05:39:23

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

You Cant Do Anything To Fix It One Thing I Can Help You Is I Can Put You In My Webmaster Account For Your Help. 3 Days Before One Of My Site Have Same Problem It Is Now Gone Nothing Showing In Warning. I Do Not Understand Why it Is Showing In You. One More Thing Resubmitting Does Not Mean It is Recrawled So Be Sure When It Is Recrawled Or I Can Put In My Webmaster Account For You I Submit My Webmaster account Daily In Night.........LOL.





ful2fun.com
livesexpirates.com

Offline

#21 2012-04-07 19:38:55

Pornogoddess
Member
From: NY
Registered: 2011-01-12
Posts: 183
Website

Re: Sitemap-video-1.xml not being read by Google

Ful2Fun - you're a sweetheart. :-)

Offline

#22 2012-04-07 19:55:08

ful2fun.com
Member
From: GB
Registered: 2011-09-16
Posts: 1,040
Website

Re: Sitemap-video-1.xml not being read by Google

HEHEHEHE............Thanx.......
I Talked With Google Guys They Told Me That You Should Not Worry About These Errors. They Said When Google Bot Goes Your Website By Its Own And That Pages Are Not Down That Time Or Timed Out Then They Will Be Indexed. If we Resubmit The Pages It will not Crawl That Pages Quickly. So Need To Worry about its Ok I Have 40000+ Pages But Still I Have Many Indexed About 75%.......


ful2fun.com
livesexpirates.com

Offline

#23 2012-05-15 11:48:40

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

Re: Sitemap-video-1.xml not being read by Google

Added escaping with e() instead of htmlspecialchars(). This should fix the problem if its a double escape bug. I will test this once i setup the demo for 1.0.


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

Offline

#24 2012-05-21 11:47:53

German-Porn-Tube
Member
From: Spain but german speaking ;-)
Registered: 2012-02-13
Posts: 34
Website

Re: Sitemap-video-1.xml not being read by Google

This page contains the following errors:

error on line 6640 at column 24: Entity 'auml' not defined
Below is a rendering of the page up to the first error.

look at:

http://www.german-porn-tube.com/sitemap … ideo-1.xml

google cant read my Videositemap

in WM-Tools:

Please validate your Sitemap

I still resubmit and regenerate it


Anybody can help?


German-Porn-Tube.net bbcode test
http://www.tubeuploadtool.german-porn-tube.net <- 1000´s Videos upload per Day + Rewrite Titel and Description in many Languages

Offline

#25 2012-05-21 14:39:34

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

Re: Sitemap-video-1.xml not being read by Google

Hmm...seems like its not escaped. Please post all lines with e() and htmlspecialchars in this post, maybe i have some newer version and thats why i cant reproduce.


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

Offline

Board footer

Powered by FluxBB