admin not accessible in coppermine
| Forfatter |
Besked |
lamort


Indmeldt: Apr 19, 2005 Indlæg: 9
|
Tråd: Re: admin not accessible in coppermine Skrevet: Tor Jul 28, 2005 8:23 am |
|
i had the same problem, thanks for your solution
lamort's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux jota 2.4.29/Apache/MySQL:4.0.18-standard/PHP:4.3.10/CPGNuke:9.0.3.0 |
|
| Tilbage til toppen |
|
 |
tattoohead


Indmeldt: Jul 30, 2005 Indlæg: 51
|
Tråd: Re: admin not accessible in coppermine Skrevet: Lør Jul 30, 2005 4:15 am |
|
Yup...same here. Same problem..thought I was going crazy..
_________________ Why is it that there's always more month at the end of my money?
tattoohead's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/1.3.33/4.0.25-standard/4.3.10/9.0.5.0 |
|
| Tilbage til toppen |
|
 |
-PunisheR-


Indmeldt: Aug 01, 2005 Indlæg: 3 Geografisk sted: BallistiC
|
Tråd: Re: admin not accessible in coppermine Skrevet: Man Aug 01, 2005 4:39 am |
|
man I must be blind
did the sql above and the cache and the cookie thing
I tapped into the gallery config manually in the url
but cannot do the same with 'catmgr' - 'don't have permission ... '
-PunisheR-'s server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) xp/2.0/4.1.12-nt-log/5.0.4/9.0.5.0 |
|
| Tilbage til toppen |
|
 |
-PunisheR-


Indmeldt: Aug 01, 2005 Indlæg: 3 Geografisk sted: BallistiC
|
Tråd: Re: admin not accessible in coppermine Skrevet: Man 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
-PunisheR-'s server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) xp/2.0/4.1.12-nt-log/5.0.4/9.0.5.0 |
|
| Tilbage til toppen |
|
 |
MikieMouse


Indmeldt: Jun 27, 2004 Indlæg: 504 Geografisk sted: South Dakota
|
Tråd: Re: admin not accessible in coppermine Skrevet: Man 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.
_________________ EHP Webmaster
www.ehpdesigns.com
MikieMouse's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux OS / Apache 1.3.34 / MySQL 4.1.22 / PHP 4.4.7/ DF 9.1.2.1 |
|
| Tilbage til toppen |
|
 |
Śyama_Dāsa


Indmeldt: Apr 19, 2004 Indlæg: 2049 Geografisk sted: Dragonfly CMS Tribe
|
Tråd: Re: admin not accessible in coppermine Skrevet: Ons 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
_________________ AKA Akamu / Read these and your life will be successful | Find a Repair
--
Mods and Professional Support via YIM
Śyama_Dāsa's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) win32 / Apache 1.3.33 / MySQL 4.1.16/PHP 4.4/CPG-CVS ( browsers: Mozilla 1.7.x / IE6 / Opera 8.0) |
|
| Tilbage til toppen |
|
 |
MikieMouse


Indmeldt: Jun 27, 2004 Indlæg: 504 Geografisk sted: South Dakota
|
Tråd: Re: admin not accessible in coppermine Skrevet: Ons 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.
_________________ EHP Webmaster
www.ehpdesigns.com
MikieMouse's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux OS / Apache 1.3.34 / MySQL 4.1.22 / PHP 4.4.7/ DF 9.1.2.1 |
|
| Tilbage til toppen |
|
 |
mc__


Indmeldt: Jul 12, 2005 Indlæg: 450 Geografisk sted: QLD, Australia
|
Tråd: Re: admin not accessible in coppermine Skrevet: Fre 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; }
_________________

mc__'s server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux (Kernel: 2.4.21-27.0.2.ELsmp)/1.3.33 (Unix)/4.0.24-standard/4.3.11/9.0.5.0 |
|
| Tilbage til toppen |
|
 |
mc__


Indmeldt: Jul 12, 2005 Indlæg: 450 Geografisk sted: QLD, Australia
|
Tråd: Re: admin not accessible in coppermine Skrevet: Fre 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.
_________________

mc__'s server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux (Kernel: 2.4.21-27.0.2.ELsmp)/1.3.33 (Unix)/4.0.24-standard/4.3.11/9.0.5.0 |
|
| Tilbage til toppen |
|
 |
Rothin


Indmeldt: Jul 17, 2004 Indlæg: 40
|
Tråd: Re: admin not accessible in coppermine Skrevet: Lør 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?
Rothin's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.33 (Unix) / 4.0.20-standard / 4.3.10 / Dragonfly 9.1 |
|
| Tilbage til toppen |
|
 |
Rothin


Indmeldt: Jul 17, 2004 Indlæg: 40
|
Tråd: Re: admin not accessible in coppermine Skrevet: Lør 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.
Rothin's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.33 (Unix) / 4.0.20-standard / 4.3.10 / Dragonfly 9.1 |
|
| Tilbage til toppen |
|
 |
albanialove


Indmeldt: Dec 13, 2004 Indlæg: 83
|
Tråd: Re: weird admin problem on localhost Skrevet: Ons 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...
_________________ webalbania.com
albanialove's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Php 5.0.4 /MySQL 5.0.26/DF CMS 9.1.1.RC2 |
|
| Tilbage til toppen |
|
 |
albanialove


Indmeldt: Dec 13, 2004 Indlæg: 83
|
Tråd: Re: weird admin problem on localhost Skrevet: Tor 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;
_________________ webalbania.com
albanialove's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Php 5.0.4 /MySQL 5.0.26/DF CMS 9.1.1.RC2 |
|
| Tilbage til toppen |
|
 |
wrightme


Indmeldt: Okt 06, 2006 Indlæg: 9 Geografisk sted: Nevada, US
|
Tråd: Re: admin not accessible in coppermine Skrevet: Fre Okt 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.
wrightme's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/1.3.37/4.1.21-standard/4.4.4/9.1.1 |
|
| Tilbage til toppen |
|
 |
|
Du kan ikke skrive nye indlæg i dette forum Du kan ikke besvare indlæg i dette forum Du kan ikke rette dine indlæg i dette forum Du kan ikke slette dine indlæg i dette forum Du kan ikke stemme på afstemninger i dette forum Du kan ikke tilføje filer i dette forum Du kan ikke downloade filer fra dette forum
|

|
User Info ![Show/hide content [x]](themes/dragonfly/images/minus.png)
 Velkommen Gæst
Languages ![Show/hide content [x]](themes/dragonfly/images/minus.png)
Community ![Show/hide content [x]](themes/dragonfly/images/minus.png)
 Support for DragonflyCMS in a other languages:
• Dansk
• Deutsch
• Eesti
• Italia
• Norsk
Testimonials ![Show/hide content [x]](themes/dragonfly/images/minus.png)
I just did the phpNuke 7.4 to CPG-Nuke CVS conversion. Was very easy. ... Found everything I needed to help me along the way with a few searches.
The most unexpected and best thing I have found after switching was the increased speed.
I used to think I needed to change hosts--since switching to CPG-Nuke all my users have commented on how much faster pages load
Whit
i was running phpnuke and have almost 30,000 members
apache and sql both running at 99% usage,
server crashed when 50 ppl online,
Host wanted me off shared hosting as many customers complaining i was crashing a p4 3.2
with 2gig ram,
i converted to cpg and now i have less than a 50% server load
cpg saved me $300 USD a month
offshore dedicated servers cost $$
thx guys
one decision i dont regreat is CPGNUKE
Korben
www.datastreamz.net
It's like this - I was working with Oldsmobiles when I was workin with HTML. Then I moved up to Mazda's and Audi's with PHP Nuke. But now my friends I am riding in style with Benz's and Porche's. The diffrence is that noticable immediatly. The Install is so simple once you get it and the site is so secure its like fort knox. Thank you - And you all can expect to see alot more of me around - suggesting ideas and helping where I can. Peace out all - and enjoy newbies. It's really worth it to use CPGNuke.
- Kid_Creation
One thing I've noticed about CPG-Nuke... it is fast and clean. Impressive. One of my 'customers' liked it so much she wanted everything changed to CPG-Nuke!
- valis
awebware.com
The conversion from phpNuke 7.4 to CPG-Nuke (CVS) was a piece of cake. The data conversion took about two hours. Hit a few snags--but nothing a few forum searches couldn't fix.
Probably the best compliment I got from my users--"Did you change hosts?" The speed improvement over phpNuke is quite noticable.
Kudos to the developement team! Thanks for helping me get away from the phpNuke tease.
- Whit
endofropegang.com
Thanks for the Great program! I never regret migrating from PhpNuke. My
site is so much faster and more secure. Now I spend time managing my site instead
of the site software. Keep up the good work!
- Rod
www.gentle.org
Now that we are running CPG Nuke this is the first time I've travelled
without having to worry about hacking, monitoring the site daily, etc. Thanks for
CPG Nuke and everyone that made it possible. We are running a consumer advocacy
site at householdwatch.com and the site is very busy. CPG Nuke is doing the job
and doing it well.
NukeFind
CPG is Fast, Secure & Free
Since installing it's been much easier to work with as an admin.
Better admin features but not as many modules that phpnuke offers.
Built for speed and reliability.
Admin of 3 prominent sites that combined receive 6 million hits annually.
CPGnuke is hands down the best CMS out there.
- djdevon3
I just made the switch to CPG, from phpNuke.
The install was easy, simple when following well written instructions. My site has dramatically increased in speed, it really is a day and nite difference.
Thanks to everyone who is a part of the CPG-Nuke project and for offering this CMS as a great alternative to the other *Nukes.
I look forward to being a part of the community.
Kristin
"I made the switch!"
I managed to stumble onto this remake of phpnuke type CMS and have been VERY pleased ever since... I'm very glad it's the system I'm using to make a web site.
4est
Great sense of community around CPG Nuke!
Thanks for your hard work
Cheers!
roRisc
To the Dev team. You guys rock keep up the good work. Hopefully I'll get good enough at this quickly so that I'll be able to start posting some solutions and tips as well.
Cup-A-Cino
I want to thank everyone who help me to build my cpgnuke, know the final layout look great, makes the user want to register.....thanks alot guys
TRANCEBUDHA
Hey thanks for the quick replies..hehe.. ya I am trying to check out cpg-nuke on the same server.. anyways.. www.sizzle.no-ip.com /ufo just a test site main php-nuke is www.sizzle.no-ip.com and forums www.sizzle.no-ip.com /forums It seems so far that cpg-nuke is quit a bit faster than php-nuke.. thanks again
sixpack
CPG-Nuke and its support community ROCKS!
James D Kirk
CPGNuke is making phpnuke look like hammered dog-crap so far...
Persistence
Just installed the latest version of CPG and I'm lovin' it!
square
love CPG!
Mecro
man i just took a look at the demo ADMIN and you guys truly did a remarkable job.. this blows PHPNuke away...
dirtbag
Thank You, cpgnuke.
Thank You All that are behind that wonderful script.
Truden
Excellent Coppermine with safemod :)
Work fine with safemod
nice Job
Reha
Thank You, cpgnuke.
I am amazed at what CPG Nuke has to offer...
JamesSelvage
Great site. Great software.
ShermD3
Well I got my first CPGNuke site up! (huzzah?) I must say of the 5 site I run, 4 of which are PHP-Nuke sites I'm most impressed
GeoffM
This install was SOOO smooth. Great job guys! I love it!
dcorwin
Hey CPG-Nuke Dev Team!! Wow!!!!...pretty much sums it up.
I love cpgnuke and I've only had it a couple days now.
sabione
Great system you developed here. Thanks !
cwweb
X-links ![Show/hide content [x]](themes/dragonfly/images/minus.png)
Preview theme ![Show/hide content [x]](themes/dragonfly/images/minus.png)
Each user can view the site with a different theme.
Themes marked with a * also change the forum look.
|