admin not accessible in coppermine
Go to page Previous  1, 2  :| |:
-> Coppermine

#16: Re: admin not accessible in coppermine Author: lamort PostPosted: Thu Jul 28, 2005 8:23 am
    ----
i had the same problem, thanks for your solution

#17: Re: admin not accessible in coppermine Author: tattoohead PostPosted: Sat Jul 30, 2005 4:15 am
    ----
Yup...same here. Same problem..thought I was going crazy.. Neutral

#18: Re: admin not accessible in coppermine Author: -PunisheR-Location: BallistiC PostPosted: Mon Aug 01, 2005 4:39 am
    ----
man I must be blind

did the sql above and the cache and the cookie thing

Rolling Eyes Confused

I tapped into the gallery config manually in the url

but cannot do the same with 'catmgr' - 'don't have permission ... '

#19: Re: admin not accessible in coppermine Author: -PunisheR-Location: BallistiC PostPosted: Mon Aug 01, 2005 4:55 am
    ----
DOH

nm

you have to do this in addition to this thread

dragonflycms.org/Forum...11467.html

The key being this:
admin > ranks > create the rank you want and set it as a special rank. ( site admin )

Well that's what seemed to work for me anyway Big grin

#20: Re: admin not accessible in coppermine Author: MikieMouseLocation: South Dakota PostPosted: Mon Aug 01, 2005 11:54 pm
    ----
This didn't quite work for me. I have my coppermine gallery setup and working under "eGallery". It was working on 9.0.4, but once I upgraded it is experiencing this issue.

I have added the field to the cms_admins table, changed my member and admin cookie (both for the site and the gallery). I have cleared my cache folder, cleared my browser's cache (firefox). Even tried it on a PC that has never been to my site using IE 6.0 and still it won't work.

I can manually go to the config section, but I cannot do anything else manually. Getting the "Not Authorized" errors. Any other hints on something that may need to be adjusted to see that I am not using the coppermine directory? I have three image galleries on my site (all were working fine with 9.0.4).

Any assistance would be greatly appreciated.

#21: Re: admin not accessible in coppermine Author: Śyama_DāsaLocation: Dragonfly CMS Tribe PostPosted: Wed Aug 31, 2005 12:24 am
    ----
MikieMouse try adding via phpmyadmin
Code::
ALTER TABLE `cms_admins` ADD `radmin*` TINYINT( 1 ) DEFAULT '0' NOT NULL;
where * is the renamed coppermine module name

#22: Re: admin not accessible in coppermine Author: MikieMouseLocation: South Dakota PostPosted: Wed Aug 31, 2005 11:18 am
    ----
akamu wrote:
MikieMouse try adding via phpmyadmin
Code::
ALTER TABLE `cms_admins` ADD `radmin*` TINYINT( 1 ) DEFAULT '0' NOT NULL;
where * is the renamed coppermine module name

I've already tried doing that for each of my modules. There is a problem with the "IS_ADMIN" portion of some of the includes for coppermine that are not detecting me as an admin in versions of DF from v9.0.5 so I went back to that code from v9.0.3 and it works again. Though a couple other things did break but I can live with those.

#23: Re: admin not accessible in coppermine Author: mc__Location: QLD, Australia PostPosted: Fri Sep 23, 2005 10:06 pm
    ----
bah, i too had this problem, and it was no measely sql defeciancy; i already had all the neccessary columns; instead it was the fact that my admin area was still affect via register globals being off, ie a variable wouldn't be initialised with it's $_GET[] data, so i needed to do it explicitly.

I added the bugfix, but cvs file is still unchanged (i dont knwo why though).

replace this
PHP:
if (!defined('ADMIN_PAGES')) { exit; }
if (!
can_admin($op)) { exit; }
with this
PHP:
if (!defined('ADMIN_PAGES')) { exit; }
$op=$_GET['op'];
if (!
can_admin($op)) { exit; }

#24: Re: admin not accessible in coppermine Author: mc__Location: QLD, Australia PostPosted: Fri Sep 23, 2005 10:10 pm
    ----
mc__ wrote:
bah, i too had this problem, and it was no measely sql defeciancy; i already had all the neccessary columns; instead it was the fact that my admin area was still affect via register globals being off, ie a variable wouldn't be initialised with it's $_GET[] data, so i needed to do it explicitly.

I added the bugfix, but cvs file is still unchanged (i dont knwo why though).

replace this
PHP:
if (!defined('ADMIN_PAGES')) { exit; }
if (!
can_admin($op)) { exit; }
with this
PHP:
if (!defined('ADMIN_PAGES')) { exit; }
$op=$_GET['op'];
if (!
can_admin($op)) { exit; }

I have a coppermine icon in my admin section if i do this, if i remove it i no longer have one, if i put it back i do, if i remove it i dont, so i put it back and i do.

I think that that is pretty definite proof of this being the cause. seems pretty foolproof to me.

Now i don't know why not everyone experiences this issue (maybe their web account isn't fully priviledged like how mine is), but please reply saying if this fixed it, or it was something else.

#25: Re: admin not accessible in coppermine Author: Rothin PostPosted: Sat Nov 26, 2005 7:24 pm
    ----
I'm still having this issue after upgrading to the latest version. (9.0.6.1).

I've done everything so far in this thread and I have no icon in admin panel and the only option I have is to manually type in the URL, but I only have the option to goto config. Anything else is access denied.

Can anyone offer any other suggestions?

#26: Re: admin not accessible in coppermine Author: Rothin PostPosted: Sat Nov 26, 2005 7:33 pm
    ----
UPDATE: It's working now. After finding another thread with this issue I realized I had forgotten to log out and log back in to admin to reset the cookie. It appears to be working now. Smile

#27: Re: weird admin problem on localhost Author: albanialove PostPosted: Wed Dec 07, 2005 3:17 pm
    ----
akamu wrote:
Code::
ALTER TABLE `cms_admins` ADD `radmincoppermine` TINYINT( 1 ) DEFAULT '0' NOT NULL;

i have make this on cms_admins but nothing
something else...

#28: Re: weird admin problem on localhost Author: albanialove PostPosted: Thu Dec 08, 2005 12:10 pm
    ----
akamu wrote:
Code::
ALTER TABLE `cms_admins` ADD `radmincoppermine` TINYINT( 1 ) DEFAULT '0' NOT NULL;

Now is ok, with this it work:
Code::
ALTER TABLE `cms_admins` ADD `radmincoppermine` TINYINT( 4 ) DEFAULT '0' NOT NULL;

#29: Re: admin not accessible in coppermine Author: wrightmeLocation: Nevada, US PostPosted: Fri Oct 06, 2006 5:58 am
    ----
I also had this problem with a fresh "update" load on phpNuke 7.0! This would be VERY good information to include in a .txt file with the install package.



-> Coppermine

All times are GMT

Go to page Previous  1, 2  :| |:
Page 2 of 2