vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Integration with vBulletin - MediaWiki/vBulletin Single Sign-On (https://vborg.vbsupport.ru/showthread.php?t=213102)

Coleccromos 04-27-2010 02:46 PM

Quote:

Originally Posted by AfterWorldForum (Post 2028106)
It seems as if you nowhere defined the VB_SYSTEM_PATH variable, and therefore receive the error. Let me show you parts of my LocalSettings.php. My forum is on www.entropiaplanets.com/forums. My wiki is accessible through www.entropiaplanets.com/wiki, but is actually physically located in www.entropiaplanets.com/w. (Note that I also have use a VPS, and the path on the server is similar to yours (/var/www/vhosts/entropiaplanets.com/httpdocs/w).

My LocalSettings.php has the following lines:

Code:

if( defined( 'MW_INSTALL_PATH' ) ) {
    $IP = MW_INSTALL_PATH;
} else {
    $IP = dirname( __FILE__ );
}

$path = array( $IP, "$IP/includes", "$IP/languages" );
set_include_path( implode( PATH_SEPARATOR, $path ) . PATH_SEPARATOR . get_include_path() );

require_once( "$IP/includes/DefaultSettings.php" );
define( VB_SYSTEM_PATH, '/var/www/vhosts/entropiaplanets.com/httpdocs/forums' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );

If you do not have the red line, add it, and change from entropiaplents.com to cromosdefutbol.com.

I have to admit that I really cannot guess as to the error regarding the includes of the AuthPlugin line, but see if my setup gives you something to work with. Feel free to post the results here.

Thanks for your help.

At the moment I have a different error above:

Code:

Parse error:  syntax error, unexpected T_IF in /var/www/vhosts/cromosdefutbol.com/httpdocs/mediawiki/LocalSettings.php  on line 30
We need to call the directory wiki? I have my directory called mediawiki

Coleccromos 04-28-2010 11:20 AM

Got it work with my forum but when I access mediawiki out the following error lines

http://www.cromosdefutbol.com/mediaw...gina_Principal

Code:

Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in /var/www/vhosts/cromosdefutbol.com/httpdocs/mediawiki/LocalSettings.php on line 26
 Constant CWD already defined in /var/www/vhosts/cromosdefutbol.com/httpdocs/cromo/global.php on line 16


AfterWorldForum 04-29-2010 05:37 AM

Quote:

Originally Posted by Coleccromos (Post 2028503)
Got it work with my forum but when I access mediawiki out the following error lines

http://www.cromosdefutbol.com/mediaw...gina_Principal

Code:

Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in /var/www/vhosts/cromosdefutbol.com/httpdocs/mediawiki/LocalSettings.php on line 26
 Constant CWD already defined in /var/www/vhosts/cromosdefutbol.com/httpdocs/cromo/global.php on line 16


Maybe it's easier if you post the contents of your localsettings.php file here. Just substitute the security information (servername, account, password, database, etc) with asterisks (i.e. *******).

That way we could see what the lines referred to are.

Is it possible that somewhere in the file (below the red line you recently added or changed) have a reference to VB_SYSTEM_PATH but surrounded with single quotes (')?

As for the CWD error, earlier in this thread someone posted a similar issue, but I did not sede any replies to it, or solutions offered for it. I never saw the error myself, so I cannot really help you figure out exactly what causes this.

I'm starting to think the two errors might actually be related, with the first one somehow preventing the proper vB files to be loaded, which causes the second problem. In addition to the localsettings, could you please also copy/paste the contents of WIKI_PATH/includes/AuthPlugin_vBSSO.php ? That is where all the vB stuff is called. Did you happen to make any changes to that file? (I think I use an older version of the file, so maybe some of the changes made in the last release changed the behaviour).

Coleccromos 05-05-2010 11:41 AM

Thanks for your time AfterWorldForum

This is the LocalSettings
Code:

<?php

# This file was automatically generated by the MediaWiki installer.
# If you make manual changes, please keep track in case you need to
# recreate them later.
#
# See includes/DefaultSettings.php for all configurable settings
# and their default values, but don't forget to make changes in _this_
# file, not there.
#
# Further documentation for configuration settings may be found at:
# http://www.mediawiki.org/wiki/Manual:Configuration_settings

# If you customize your file layout, set $IP to the directory that contains
# the other MediaWiki files. It will be used as a base to locate files.
if( defined( 'MW_INSTALL_PATH' ) ) {
    $IP = MW_INSTALL_PATH;
} else {
    $IP = dirname( __FILE__ );
}

$path = array( $IP, "$IP/includes", "$IP/languages" );
set_include_path( implode( PATH_SEPARATOR, $path ) . PATH_SEPARATOR . get_include_path() );

require_once( "$IP/includes/DefaultSettings.php" );
define( VB_SYSTEM_PATH, '/var/www/vhosts/cromosdefutbol.com/httpdocs/cromo' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );
# If PHP's memory limit is very low, some operations may fail.
# ini_set( 'memory_limit', '20M' );

if ( $wgCommandLineMode ) {
    if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) ) {
        die( "This script must be run from the command line\n" );
    }
}
## Uncomment this to disable output compression
# $wgDisableOutputCompression = true;

$wgSitename        = "Cromopedia";

## The URL base path to the directory containing the wiki;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath      = "/mediawiki";
$wgScriptExtension  = ".php";

## UPO means: this is also a user preference option

$wgEnableEmail      = true;
$wgEnableUserEmail  = true; # UPO

$wgEmergencyContact = "*****";
$wgPasswordSender = "******";

$wgEnotifUserTalk = true; # UPO
$wgEnotifWatchlist = true; # UPO
$wgEmailAuthentication = true;

## Database settings
$wgDBtype          = "mysql";
$wgDBserver        = "localhost";
$wgDBname          = "*****";
$wgDBuser          = "****";
$wgDBpassword      = "****";

# MySQL specific settings
$wgDBprefix        = "";

# MySQL table options to use during installation or update
$wgDBTableOptions  = "ENGINE=InnoDB, DEFAULT CHARSET=binary";

# Experimental charset support for MySQL 4.1/5.0.
$wgDBmysql5 = true;

## Shared memory settings
$wgMainCacheType = CACHE_ACCEL;
$wgMemCachedServers = array();

## To enable image uploads, make sure the 'images' directory
## is writable, then set this to true:
$wgEnableUploads      = false;
# $wgUseImageMagick = true;
# $wgImageMagickConvertCommand = "/usr/bin/convert";

## If you use ImageMagick (or any other shell command) on a
## Linux server, this will need to be set to the name of an
## available UTF-8 locale
# $wgShellLocale = "en_US.UTF-8";

## If you want to use image uploads under safe mode,
## create the directories images/archive, images/thumb and
## images/temp, and make them all writable. Then uncomment
## this, if it's not already uncommented:
# $wgHashedUploadDirectory = false;

## If you have the appropriate support software installed
## you can enable inline LaTeX equations:
$wgUseTeX          = false;

$wgLocalInterwiki  = strtolower( $wgSitename );

$wgLanguageCode = "es";

$wgSecretKey = "*******";

## Default skin: you can change the default skin. Use the internal symbolic
## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook':
$wgDefaultSkin = 'monobook';

## For attaching licensing metadata to pages, and displaying an
## appropriate copyright notice / icon. GNU Free Documentation
## License and Creative Commons licenses are supported so far.
# $wgEnableCreativeCommonsRdf = true;
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
$wgRightsUrl = "";
$wgRightsText = "";
$wgRightsIcon = "";
# $wgRightsCode = ""; # Not yet used

$wgDiff3 = "";

# When you make changes to this configuration file, this will make
# sure that cached pages are cleared.
$wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', @filemtime( __FILE__ ) ) );

Edited to eliminate the code AuthPlugin_vBSSO Archive
Showed a modification in the response 164 and solved the problem of cwd

gamerfu 05-06-2010 09:55 AM

might be shojin (sp?) causing CWD error?

AfterWorldForum 05-11-2010 04:52 PM

Quote:

Originally Posted by Coleccromos (Post 2032073)
Thanks for your time AfterWorldForum

This is the LocalSettings
...
Edited to eliminate the code AuthPlugin_vBSSO Archive
Showed a modification in the response 164 and solved the problem of cwd

Strangely enough, I seem to have the same errors on my end.

Could you please elaborate exactly what you did to remove the CWD error?

Coleccromos 05-13-2010 11:22 AM

Quote:

Originally Posted by AfterWorldForum (Post 2035257)
Strangely enough, I seem to have the same errors on my end.

Could you please elaborate exactly what you did to remove the CWD error?

What I did was copy the contents that are in the 164 response
https://vborg.vbsupport.ru/showpost....&postcount=164


Copy and paste the contents of response in the AuthPlugin_vBSSO

AfterWorldForum 05-14-2010 01:00 PM

Quote:

Originally Posted by Coleccromos (Post 2036283)
What I did was copy the contents that are in the 164 response
https://vborg.vbsupport.ru/showpost....&postcount=164


Copy and paste the contents of response in the AuthPlugin_vBSSO


Thanks for your reply. If I read correctly, the contents of that were meant for vB4, though, right?

Coleccromos 05-15-2010 02:35 PM

Yes, it seems.

I tried this if it worked and it was.


By looking for evidence and I find that when you install mediawiki gives me the following error

  • Warning
    : is_dir() [function.is-dir]: open_basedir restriction in effect. File(/var/lib/php/session) is not within the allowed path(s): (/var/www/vhosts/cromosdefutbol.com/httpdocs:/tmp) in /var/www/vhosts/cromosdefutbol.com/httpdocs/wiki/config/index.php on line 441
  • Warning: Your session.save_path value (/var/lib/php/session) appears to be invalid or is not writable. PHP needs to be able to save data to this location for correct session operation.

Dontom 05-15-2010 04:29 PM

Quote:

Originally Posted by Dontom (Post 1942391)
Same here, too, also after the latest patch with the changed salt in vb's functions.php I get the same message.

when saving an edit or adding a new page I get the 'token_suffix_mismatch' message:
=> "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''

Any help is appreciated!

ok, finally solved it - in php.ini magic_quotes_gpc was On - set it to off, now it works again...

iamacyborg 05-16-2010 12:13 PM

I updated my version of Mediawiki and it's since stopped running. I can create a Mediawiki account fine, the redirect to forum login just isn't working.

/edit
And it's now working after reinstalling the product. That was odd.

Coleccromos 05-16-2010 03:59 PM

Quote:

Originally Posted by iamacyborg (Post 2037883)
I updated my version of Mediawiki and it's since stopped running. I can create a Mediawiki account fine, the redirect to forum login just isn't working.

/edit
And it's now working after reinstalling the product. That was odd.


Beautiful and very nice design.

Could you comment on how to apply the design of the forum to the wiki?

iamacyborg 05-16-2010 04:37 PM

Thank you, though I can't really take the credit for it.
It's mostly a modification I found here (link), though I had to make some changes to the template for it to be fixed width, rather than fluid. Also, it doesn't validate, so it'll need some work if you care about that kind of thing.
Very handy though if you want a nice looking conversion.

AfterWorldForum 05-17-2010 10:48 AM

Just as a FYI, the CWD errors can be solved by editing the vB global.php.

Replace:

Code:

define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
with

Code:

if (!defined('CWD'))
{
        define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
}

Still lost on how to solve the VB_SYSTEM_PATH one, though.

Coleccromos 05-18-2010 04:32 PM

Quote:

Originally Posted by AfterWorldForum (Post 2038432)
Just as a FYI, the CWD errors can be solved by editing the vB global.php.

Replace:

Code:

define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
with

Code:

if (!defined('CWD'))
{
    define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
}

Still lost on how to solve the VB_SYSTEM_PATH one, though.

Wonderful!

Thank you very much for the solution.

In another problem such as I, it is difficult to understand!

Continue to investigate

aciurczak 05-24-2010 02:24 AM

Quote:

Originally Posted by iamacyborg (Post 2037883)
I updated my version of Mediawiki and it's since stopped running. I can create a Mediawiki account fine, the redirect to forum login just isn't working.

/edit
And it's now working after reinstalling the product. That was odd.

I'm still having the same issue. Was working fine with 1.15.1, updated to 1.15.3, and now the login on the MW side doesn't work, always says login failure. If the user is logged in already via the forum, that login does carry over successfully to the wiki side and everything works fine. vB 3.8.5, MW 1.15.3, PHP 5.3.2, mysql 5.1.47.

iamacyborg 05-24-2010 03:20 PM

Have you tried uninstalling the product on the vBulletin side and then reinstalling it?

aciurczak 05-24-2010 05:00 PM

I reinstalled it with overwrite enabled, and that didn't change the behavior. I hadn't tried uninstalling it and then reinstalling it; I will give it a shot tonight.

mazazangy 05-25-2010 11:42 AM

thanks

Rean 06-17-2010 01:06 PM

based on readme.txt file:
everything is okay until.. i wrote "php_flag magic_quotes_gpc off" at .htaccess file.

Code:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@unitedindonesia.org and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


Digital Jedi 06-18-2010 03:03 AM

Quote:

Originally Posted by Rean (Post 2054993)
based on readme.txt file:
everything is okay until.. i wrote "php_flag magic_quotes_gpc off" at .htaccess file.

Code:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@unitedindonesia.org and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


Do you have a backup of the old .htaccess file, because something didn't get edited right when you saved after editing?

Burgy 07-13-2010 11:38 AM

vBulletin 3.8.1 Patch Level 1
MediaWiki 1.12.4
MMOG Wiki (Version 2.1.0) Single Sign On from vBulletin

ERROR:
Notice: Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in /var/www/vhosts/kunstbewegung.info/httpdocs/wikide7/LocalSettings.php on line 19

LocalSettings.php Line 18-20:
require_once( "$IP/includes/DefaultSettings.php" );
define( VB_SYSTEM_PATH, '/var/www/vhosts/kunstbewegung.info/httpdocs/cde' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );

Since I looked around hard and canĀ“t find anybody with the same error, please help.
I did already aply the fix to global.php:

if (!defined('CWD'))
{
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
}

Thank you for helpf
Sincerely yours
Burgy

grey_goose 07-23-2010 05:49 AM

Quote:

Originally Posted by Dontom (Post 2037448)
ok, finally solved it - in php.ini magic_quotes_gpc was On - set it to off, now it works again...

Thanks!!!

JesterP 07-30-2010 10:14 PM

Hi there,

Code:

404 Not Found

--------------------------------------------------------------------------------

nginx


I'm getting an error where the redirect back to the wiki fails after log in from the wiki. I am getting redirected to "/wiki/Main_Page" when it needs to be "/wiki/index.php?title=Main_Page".

I have short URLs in the ACP for this mod set to "NO".

Any help would be appreciated!!!

Jester

*edit

I've configured NGinx to rewrite properly, set the option to use short urls to yes. Short urls working fine, now upon logging in it completely omits /wiki from the url and just plops me back on the site. It as if it's ignoring the "/wiki" option in the ACP. Still need help.

*Edit2

Woke up today and it's working fine..... I have no idea why. Thanks.

Dunhamzzz 08-18-2010 04:21 PM

Quote:

Originally Posted by Burgy (Post 2068505)
vBulletin 3.8.1 Patch Level 1
MediaWiki 1.12.4
MMOG Wiki (Version 2.1.0) Single Sign On from vBulletin

ERROR:
Notice: Use of undefined constant VB_SYSTEM_PATH - assumed 'VB_SYSTEM_PATH' in /var/www/vhosts/kunstbewegung.info/httpdocs/wikide7/LocalSettings.php on line 19

LocalSettings.php Line 18-20:
require_once( "$IP/includes/DefaultSettings.php" );
define( VB_SYSTEM_PATH, '/var/www/vhosts/kunstbewegung.info/httpdocs/cde' );
require_once( "$IP/includes/AuthPlugin_vBSSO.php" );

Since I looked around hard and can?t find anybody with the same error, please help.
I did already aply the fix to global.php:

if (!defined('CWD'))
{
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
}

Thank you for helpf
Sincerely yours
Burgy

Try putting VB_SYSTEM_PATH in the define() function in quotes, eg define('VB_SYSTEM_PATH', '/path/to/what');

I am having some problems myself, using the latest MediaWiki 1.16 and vb 3.8.6 PL1. The error is:
Code:

Warning: Parameter 1 to vBSSOAutoAuth() expected to be a reference, value given in /sites/umpc-mydellmini/www/http/w/includes/Hooks.php on line 133
MediaWiki internal error.


Dunhamzzz 08-20-2010 10:52 AM

Ok I have got this mod working successfully for vBulletin 3.8.6 and MediaWiki 1.17 with PHP 5.3. In fact, the vB version shouldn't really matter at all.

Ok first of all wrap the CMD constant in an if statement, as outline in post #215.

Second of all open up the AuthPlugin_vBSSO.php file in the includes directory of Mediawiki and search for the line:
Code:

function vBSSOAutoAuth(&$user) {
Simply delete the "&" from this line and the plugin will work fine with PHP 5.3 and above

c0mm 09-01-2010 01:43 PM

I want to disallow registered user logins or rather page editing. I guess I just change the permissions for regular users in mediawiki.

grey_goose 10-19-2010 11:55 AM

when i use this mod, my users can't change mediawiki skins; if i disable it, they can. is this by design? am i missing something?

sub_ubi 11-08-2010 07:49 PM

Users can not login through the Wiki side. Any ideas what I'm doing wrong?

Digital Jedi 01-04-2011 04:00 AM

Quote:

Originally Posted by X-or (Post 2143675)
anyone could tell me how to save user preference in wiki please?

What do you mean by User Preferences?

Digital Jedi 01-04-2011 07:00 AM

Ah, I see. I don't have any trouble saving mine. Is everything else saving as expected, like entires and articles?

Big Kahuna 01-15-2011 12:00 PM

I have been using this add on with VB3.8 for some time, and my concern with losing access to my Wiki has kept me from upgrading to VB4. It appears that this addon is no longer supported and usable for VB4

Mark Hewitt 01-20-2011 09:24 AM

Anyone got this working with vBulletin 4.x?

I have vBulletin 4.1.1 and MediaWiki 1.16.0

augrunt 01-24-2011 10:40 AM

Works fine on vB 4.1.1 and MediaWiki 1.16.0 -- EXCEPT I keep seeing a lot of "Unknown Location" but it has the path okay.

augrunt 01-24-2011 10:52 AM

Scratch that, the path is not okay.

e.g.
forums.site.com
wiki.site.com

If user is browsing wiki.site.com/index.php?title=Special:WhatLinksHere
They see
Code:

Unknown Location
/index.php?title=Special:WhatLinksHere

and it links to the relative URL... so the link goes to forums.site.com/index.php?title=...

Not good at all... anyone got a fix for this? the hooks aren't working because MediaWiki isn't sending back the full path.

dutchbb 01-24-2011 08:24 PM

I just upgraded to the latest PHP, I get this on the Wiki:

Quote:

Detected bug in an extension! Hook vBSSOAutoAuth failed to return a value; should return true to continue hook processing or false to abort.
Backtrace:

#0 /home/tijl/domains/mydomain.com/public_html/wiki/includes/User.php(748): wfRunHooks('UserLoadFromSes...', Array)
#1 /home/tijl/domains/mydomain.com/public_html/wiki/includes/User.php(221): User->loadFromSession()
#2 /home/tijl/domains/mydomain.com/public_html/wiki/includes/User.php(1637): User->load()
#3 /home/tijl/domains/mydomain.com/public_html/wiki/includes/User.php(1895): User->getOption('skin')
#4 [internal function]: User->getSkin()
#5 /home/tijl/domains/mydomain.com/public_html/wiki/includes/StubObject.php(58): call_user_func_array(Array, Array)
#6 /home/tijl/domains/mydomain.com/public_html/wiki/includes/StubObject.php(184): StubObject->_call('getSkin', Array)
#7 /home/tijl/domains/mydomain.com/public_html/wiki/includes/Article.php(682): StubUser->__call('getSkin', Array)
#8 /home/tijl/domains/mydomain.com/public_html/wiki/includes/Article.php(682): StubUser->getSkin()
#9 /home/tijl/domains/mydomain.com/public_html/wiki/includes/Wiki.php(437): Article->view()
#10 /home/tijl/domains/mydomain.com/public_html/wiki/includes/Wiki.php(59): MediaWiki->performAction(Object(OutputPage), Object(Article), Object(Title), Object(User), Object(WebRequest))
#11 /home/tijl/domains/mydomain.com/public_html/wiki/index.php(93): MediaWiki->initialize(Object(Title), Object(Article), Object(OutputPage), Object(User), Object(WebRequest))
#12 {main}
Anyone willing to help out?

Edit: solution found https://vborg.vbsupport.ru/showpost....6&postcount=73

seovb_m4carbine 02-02-2011 12:08 AM

For everyone running into 404 not found errors on a mediawiki login.
I'm not sure if my scripts were configured correctly or not to begin with (took over a project), so this problem may only exist for me...but anyhow.

I was able to fix this by modifying the /includes/templates/userlogin.php file. This file controls the action attribute of the login form, and it currently points to vB's login.php file, which takes an optional url GET variable, telling the script where to redirect the user after login.

You just need to modify the userlogin.php template file to create the correct value for the return url.

I did this by changing:

PHP Code:

$base_mw_url $vbulletin->options['mmog_wiki_path'] . ( $vbulletin->options['mmog_wiki_short_url'] ? '/' '/index.php/'  ); 

To:
PHP Code:

$base_mw_url $vbulletin->options['mmog_wiki_path'] . ( $vbulletin->options['mmog_wiki_short_url'] ? '/' '/index.php?title='  ); 

And:
PHP Code:

$redirlink '?url=' $base_mw_url $returnNS

To:
PHP Code:

$redirlink =  '?url=' .$vbulletin->options['bburl']. $base_mw_url $returnNS


Gryphon 02-16-2011 12:18 AM

Quote:

Originally Posted by X-or (Post 2149444)
any idea to save user preferences please?
Digital Jedi are you using mw 1.16

Trying to figure this out myself, http://wiki.planetside-universe.com/ps/Special:Version

Disabling the extension, preferences save just fine.

Edit: I have worked around the issue. I am unsure what consequences it may have, but so far everything appears to be working as intended.

I changed
PHP Code:

            else 
            {
                
$u->clearInstanceCache'id' );
                
$u->load();
            } 

to
PHP Code:

            else 
            {
                
//$u->clearInstanceCache( 'id' );
                
$u->load();
            } 


jerseyda6 06-11-2011 05:31 AM

has this ever been solved?

Quote:

Your edit has been rejected because your client mangled the punctuation characters in the edit token. The edit has been rejected to prevent corruption of the page text.
is this the result of not turning off magic quotes?

grey_goose 06-11-2011 02:21 PM

Quote:

Originally Posted by Gryphon (Post 2163023)
Edit: I have worked around the issue. I am unsure what consequences it may have, but so far everything appears to be working as intended.

You are awesome, thank you so much!


All times are GMT. The time now is 04:33 PM.

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.04154 seconds
  • Memory Usage 1,911KB
  • 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
  • (15)bbcode_code_printable
  • (6)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete