Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 355
Search took 0.01 seconds.
Search: Posts Made By: NeutralizeR
Forum: vBulletin 3.8 Add-ons 11-07-2016, 01:18 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Check these pages: ...

Check these pages:
https://www.ampproject.org/docs/guides/amp_replacements
https://www.ampproject.org/docs/guides/iframes

Check the preg_replace examples in the amp.php file.
//Remove&Replace...
Forum: vBulletin 3.8 Add-ons 11-04-2016, 02:21 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
http://searchengineland.com/amp-pages-no-longer-ne...

http://searchengineland.com/amp-pages-no-longer-need-structured-data-valid-google-search-console-255016

You can check this example regarding dates in unix format:
$datepublished = date('c',...
Forum: vBulletin 3.8 Add-ons 11-04-2016, 09:43 AM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Helped via PM. Note: I can't answer all...

Helped via PM.

Note: I can't answer all questions via PM but I'll try to help you fix the validation issues. I believe we covered most of them. Some plugins globally add codes/lines to many vB...
Forum: vBulletin 3.8 Add-ons 11-01-2016, 04:56 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
You are welcome :)

You are welcome :)
Forum: vBulletin 3.8 Add-ons 11-01-2016, 04:23 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Open vbseo\includes\functions_vbseo.php, find...

Open vbseo\includes\functions_vbseo.php, find $durl = 'http://'.$_SERVER['HTTP_HOST'];right below this line there is a line starting with $newtext.

Replace:
$newtext = preg_replace('#<head>#i',...
Forum: vBulletin 3.8 Add-ons 11-01-2016, 03:29 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Once Googlebot crawls your AMP thread, (and if it...

Once Googlebot crawls your AMP thread, (and if it returns valid AMP status code) Google will save a copy of your page to their servers.

So, when Google pushes AMP content for all kind of websites...
Forum: vBulletin 3.8 Add-ons 11-01-2016, 03:17 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
AMP version of threads are unaffaced by vBSEO on...

AMP version of threads are unaffaced by vBSEO on my setup. I guess you are tying to make vBSEO powered AMP threads. It will require some edits in vbseo\includes.

You currently have two canonical...
Forum: vBulletin 3.8 Add-ons 11-01-2016, 02:39 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Sorry, I forgot to tell you need to edit the...

Sorry, I forgot to tell you need to edit the "ampthread" template and change
<html amp lang="tr">to<html amp lang="en">or to your language code. (de,fr,ro, etc...)
Forum: vBulletin 3.8 Add-ons 10-30-2016, 05:08 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
You don't actually need to rewrite AMP pages. AMP...

You don't actually need to rewrite AMP pages. AMP pages will be served by Google once they are crawled.

You can try these Custom Rewrite Rules for vBSEO:
'^amp\.php\?t=(\d+)' => 'amp/$1.html'or...
Forum: vBulletin 3.8 Add-ons 10-27-2016, 06:14 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Modify your class_bbcode.php as told in first...

Modify your class_bbcode.php as told in first post.

Replace your plugin with:
$url = parse_url($link);

//amphack
if (THIS_SCRIPT == 'amp') {

if ($url['scheme'] == 'https') {
$retval =...
Forum: vBulletin 3.8 Add-ons 10-26-2016, 09:10 AM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Need more detail... Check the examples in the...

Need more detail... Check the examples in the code.



You need to fix the validation errors:
155427

For example, you can't use "style" on elements. Add a "class" instead.

<td...
Forum: vBulletin 3.8 Add-ons 10-21-2016, 11:09 AM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
It is possible. I guess somebody else can create...

It is possible. I guess somebody else can create a vB 4 version of this mod.

I'll do it when I have time, if nobody else is willing to do...
Forum: vB3 General Discussions 10-20-2016, 05:06 PM
Replies: 2
Views: 1,653
Posted By NeutralizeR
Here you go:...

Here you go: https://vborg.vbsupport.ru/showthread.php?t=323668
Forum: vBulletin 3.8 Add-ons 10-20-2016, 05:05 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Template edits for validation. Page...

Template edits for validation.

Page Navigation Templates > pagenav
remove:
style="font-weight:normal"
Forum: vBulletin 3.8 Add-ons 10-19-2016, 09:00 PM
Replies: 47
Integration with vBulletin - Accelerated Mobile Pages for vBulletin
Views: 21,254
Posted By NeutralizeR
Accelerated Mobile Pages for vBulletin

What is AMP?
https://www.ampproject.org/

Info
When Google announced AMP, I realized I'd eventually need AMP support for my vBulletin forum. After reading the AMP implementation docs, I decided...
Forum: vB3 General Discussions 10-17-2016, 06:31 PM
Replies: 2
Views: 1,653
Posted By NeutralizeR
I could not reply to a PM (turned off by user) so...

I could not reply to a PM (turned off by user) so I'm adding these messages here incase somebody else wants to know about an update:
Forum: vB3 General Discussions 09-27-2016, 08:15 PM
Replies: 2
Views: 1,653
Posted By NeutralizeR
Accelerated Mobile Pages for vBulletin?

Hello,

Is there already an AMP (https://www.ampproject.org/) plugin for vBulletin, or somebody working on it?

If not, I'll share my AMP modification for vBulletin 3.8.10 next week. Some parts...
Forum: vBulletin 4.x Add-ons 05-03-2016, 05:02 PM
Replies: 76
Integration with vBulletin - More Open Graph Images (Free) by BOP5
Views: 29,221
Posted By NeutralizeR
VBSEO fix = Edit functions_vbseo.php: find: ...

VBSEO fix = Edit functions_vbseo.php:

find:
$r_tags .= '|img';replace with:
$r_tags .= '|img|meta property="og:image"';find:
$r_tattr = 'href|src|action|url|\.open|\.location';replace with:...
Forum: vBulletin 4.x Add-ons 05-02-2016, 11:30 AM
Replies: 76
Integration with vBulletin - More Open Graph Images (Free) by BOP5
Views: 29,221
Posted By NeutralizeR
vBSEO deals with attachment URL's like this: ...

vBSEO deals with attachment URL's like this:
if(!isset($VBSEO_REWRITE_TEXTURLS)){$r_tags = 'a|span|iframe';if(VBSEO_ABSOLUTE_PATH_IN_URL){$r_tags .=...
Forum: vBulletin 4.x Add-ons 04-10-2016, 03:25 AM
Replies: 76
Integration with vBulletin - More Open Graph Images (Free) by BOP5
Views: 29,221
Posted By NeutralizeR
Not sure why (I moved the website to HTTPS a few...

Not sure why (I moved the website to HTTPS a few weeks ago), but i had to disable the ":secure_url" in the plugin to make it work for attachments:

// if(strtolower(substr($thisimg, 0, 5)) ==...
Forum: vBulletin 3.8 Add-ons 04-07-2016, 09:11 AM
Replies: 125
Views: 31,805
Posted By NeutralizeR
Thanks, It worked. Not sure what "</c>" stands...

Thanks, It worked. Not sure what "</c>" stands for though...

I fixed the problem with Turkish characters.

Added this function:

function bop5htmlspecialchars ($t){ $find[0] = '<'; ...
Forum: vBulletin 3.8 Add-ons 04-06-2016, 10:33 PM
Replies: 125
Views: 31,805
Posted By NeutralizeR
Changing $bopfind =...

Changing
$bopfind = preg_quote(htmlspecialchars($bopfind));to
$bopfind = preg_quote($bopfind);fixed the issue with Turkish characters but not sure If it is safe to remove htmlspecialchars though I...
Forum: vBulletin 3.8 Add-ons 04-06-2016, 08:24 AM
Replies: 125
Views: 31,805
Posted By NeutralizeR
Hello, Thanks for the mod. It seems I need a...

Hello,

Thanks for the mod. It seems I need a custom regex for this (https://www.msxlabs.org/forum/soru-cevap/209572-subaylik-ve-gorevleri-nelerdir.html#post1224276). Matching the <i> tags.

I...
Forum: vB3 Programming Discussions 04-26-2015, 05:57 AM
Replies: 16
Views: 2,596
Posted By NeutralizeR
Yes, i'd seen that section but could not think of...

Yes, i'd seen that section but could not think of any ways to alternate the code. I posted a question @ stackoverflow and if i get an answer I will post here. Thanks.
Forum: Board of the Month 04-25-2015, 11:51 AM
Replies: 6
Views: 3,777
Posted By NeutralizeR
Site Name: MsXLabs Forum URL:...

Site Name: MsXLabs Forum
URL: http://www.msxlabs.org/forum/
Description: Turkish Q&A, education, technology and entertainment forums.
Reason for Nomination: New fully redsigned valid...
Showing results 1 to 25 of 355

 
Forum Jump

All times are GMT. The time now is 12:27 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02109 seconds
  • Memory Usage 2,075KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (62)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete