PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   ReviewPost Installation & Upgrades (http://www.photopost.com/forum/reviewpost-installation-upgrades/)
-   -   Admin Panel is messed up. (http://www.photopost.com/forum/reviewpost-installation-upgrades/109427-admin-panel-messed-up.html)

MickeyD July 31st, 2004 07:14 PM

Admin Panel is messed up.
 
The admin panel is a little messed up. My admin panel consists of only the following.

Statistics
Approve / Bulk Actions
Moderate Reviews

Back to User Index

Logout


Is this right. It seems I'm missing some sections. I don't see where to change the style and stuff. what sections am I missing and how do I get them? thanks

Chuck S July 31st, 2004 07:32 PM

Do you have ability to use PHPMYADMIN? What are you integrating with?

MickeyD August 1st, 2004 02:37 AM

sorry I decided to reinstall it so I download the latest 2.8.1 but when i configured everything and ran well this is what all i did.

1. unzipped.
2. uploaded to /root/rp
3. created a database and user to it w/ pass
4. configured my config-inc.php file (checked it a billion times)
5. chmod the folders
6. edited the header-inc.php
7. ran the install...
8. everything is going smoothly till... install.php?step=2
9. when i get to this page it says... reviewpost.sql is missing. Please restart with file in same directory as install.php | although this file is there (checked it a billion times to see correct spelling and such.)
10. cried.

What's the deal. am I missing something. I chmoded the sql file also to various combos but nothing. PLEASE HELP I HAVE A DEADLINE I WOULD LIKE TO MEET :D

Chuck S August 1st, 2004 08:56 AM

If indeed the file does exist this may be a weird server config thing. I have seen it once or twice. A file in the same directory is not recognized

Find this in install.php

if ( file_exists( "reviewpost.sql") ) {
$filearray = file( "reviewpost.sql" );

change it to something like this

if ( file_exists( "/path/to/reviewpost.sql") ) {
$filearray = file( "/path/to/reviewpost.sql" );

MickeyD August 1st, 2004 04:48 PM

ok reinstalled... still not getting anything new with the admin panel still JUST those options mentioned above. I'm integrating with vbulletin 3.0.3 and yes I do have access to the myphpadmin. thanks for your help I REALLY appreciate it! :D

Chuck S August 1st, 2004 05:49 PM

In your reviewpost usergroups table the entry for administrator. It should have a groupid of 6 and a cpaccess value of 1


All times are GMT -5. The time now is 11:19 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