PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Bug Reports (http://www.photopost.com/forum/photopost-pro-bug-reports/)
-   -   5.13 Admin panel broken with vbPortal 2 integration(FIXED) (http://www.photopost.com/forum/photopost-pro-bug-reports/114839-5-13-admin-panel-broken-vbportal-2-integration-fixed.html)

Chris Marks July 12th, 2005 01:40 PM

5.13 Admin panel broken with vbPortal 2 integration(FIXED)
 
My Photopost installation is using integration with vbPortal 2 along with my vbulletin 2.2. After upgrading from 4.6 to 5.12/13 I cannot access the admin area properly. What has happened is the admin page is adding the header HTML from vbPortal and placing it before the HTML frame set for the admin area. The result is the browser ignoring the frameset because it cannot be rendered. In addition, the side bar (adm-misc.php?admact=sidemenu) and every page to be displayed in the right frame are adding the header from the site. I can navigate directly to adm-misc.php?admact=sidemenu, and the links will just open a new window, but it's a hassle to view the source and find the direct URL to the side menu whenever I forget it.

How can I get the admin pages to stop using vbportal's header? Thanks

Chuck S July 12th, 2005 04:09 PM

Thats quite interesting as the admin area does not load the vb2 or vb3 headers.

There is no call whatsoever in any of the admin files to printheader function. adm-index.php loads the page

Code:

Content visible to verified customers only.
You can try this test. First make sure all your uploaded files are NEW and try again.

Then if still persists try in adm-inc.php right before this

require "pp-inc.php";

add this

$skip_header="yes";

Chris Marks July 12th, 2005 04:51 PM

That's what I thought when I looked through the code too. I tried both things with no luck.

Code:

Content visible to verified customers only.
The admin view code is displayed at the very end of the HTML after the header template from vbPortal2. That's where it dies, as the footer template isn't inserted.

Chuck S July 12th, 2005 05:14 PM

I do not understand how it can be calling your vbportal header

In adm-inc.php try placing this

$printheader="no";

Chris Marks July 12th, 2005 05:54 PM

Still no luck. Is there anything else I can show you or give you access to?

It's not the end of the world if it's not working right, I can manage.

Chuck S July 12th, 2005 05:57 PM

well a url and admin login as well as ftp PM me

Chuck S July 12th, 2005 06:30 PM

adding

$skip_exheader="yes";

solves you admin thing

Chris Marks July 12th, 2005 06:37 PM

Perfect. Thanks!


All times are GMT -5. The time now is 04:29 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97