Welcome, Guest. Please Login or Register.
April 20, 2024, 04:46:12 AM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [Alpha 1.5.4] phpNuke Integration 0.2 « previous next »
Pages: 1 2 3 [4] 5 6 Reply Ignore Print
Author Topic: [Alpha 1.5.4] phpNuke Integration 0.2  (Read 54853 times)
jack-uk
Full Member
***
Posts: 118


I'm a llamatron addict

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #45 on: July 09, 2003, 10:31:22 PM »
Reply with quote

Sorry, I meant to only have one 'account', single registration, one authentication secret, synced user ids and all that.

Many of our users can't seem to figure out the 'delete' button in coppermine ::) so I want o make things as simple for them as possible.

I'm probably going to attack it more from the Nuke sside than Yabb, though .. initial ideas include having nuke authenticate the user against the Yabbse cookie & load relevant bits from both it's and yabbse's user tables.
Logged

[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #46 on: July 10, 2003, 02:08:12 AM »
Reply with quote

Well, I suppose if you're gonna do it, I need not bother.

-[Unknown]
Logged
Topiatic
Noobie
*
Posts: 2


I'm a llama!

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #47 on: July 11, 2003, 03:20:58 AM »
Reply with quote

Ok I bite  ;D, sounds too good to be true but I'm "sure" the registration can't be THAT different.

And too be honest I was only looking for that as well. I don't much like the idea of cramming a forum like this... hard on the eyes.

Will let you know what I find when I look.
Logged
Feho
Full Member
***
Posts: 164


Full:FM @ www.fullfm.net

WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #48 on: July 14, 2003, 06:35:30 PM »
Reply with quote

It's a great idea, this mod!  I don't use any portal system, but some of my fiends do, and they are "obligated" to use  PhpBB because it is the only forum they know...  With this mod, probably more persons will use YaBB SE!
Logged

Visitez Full:FM --> http://www.fullfm.net
lilb
Noobie
*
Posts: 29


Never mess with a 5foot2 readheaded Sicilian!

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #49 on: July 15, 2003, 04:49:49 AM »
Reply with quote

[Unknown] - why wouldnt ya do it?  why not bother with something  just because others offer help?  c'mon dude...I'm sure you're bogged down and could use some outside perspective on some things, no??

I found something that needs to be done...err, i should say, added to the mod.  all the forum settings links, and their submit buttons to change things need to be set to run outta the modules.php, just like the rest of the stuff that changes with the mod.  because the way it sits right now, clicking a link outta admin puts ya back at the board index.  I know that it has to do with the $cgi function located in subs.php (least i think so..lol!)

take for instance this link:  http://www.mydomain.com/modules.php?name=Forums&?action=managecats

it should read:
http://www.mydomain.com/modules.php?name=Forums&board=;action=managecats

I've tested this out...by changing the action in my address bar, I'm able to access these areas...course, i cant change anything because the submit buttons dont go where they're supposed to, lol

i know the mod changes the $cgi, but I believe there's a set of quotation marks out of place, so it doesnt change it properly (i've played with it way too much..i need an outside perspective, heh!)  it doesnt change it to: board=;  it leaves the question mark in there.  and as to the submit buttons, the script calls for . $scripturl .  shouldnt it be . $cgi .?

Just my perspective on things....   ;)
Logged
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #50 on: July 15, 2003, 07:54:23 AM »
Reply with quote

No, no... it should be solving this.  Are you sure you didn't mess up the mod?

   if (substr($QUERY_STRING, 0, 12) == 'name=' . $module_name . '&?')
      $QUERY_STRING = substr($QUERY_STRING, 12);

Should fix that issue.  See?  It removes everything before and including name=Forum&? and then parses the querystring.  This makes it act normal, although the links are odd.

-[Unknown]
Logged
lilb
Noobie
*
Posts: 29


Never mess with a 5foot2 readheaded Sicilian!

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #51 on: July 15, 2003, 10:37:17 PM »
Reply with quote

yes, I'm sure I didnt mess up the mod, silly!  how could I when all I did was install it as per your instructions?   ::)

But I'm tellin ya, trying to link to anything in the admin area puts me back at the board index.  If ya wanna, hit me up on ICQ, and I'll show ya...and I can show ya my files, too.  that is, if ya want....
Logged
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #52 on: July 15, 2003, 10:53:42 PM »
Reply with quote

This URL works perfectly for me:
http://unknown.network32.net/demos/phpnuke/modules.php?name=Forum&?action=editnews

Step 1. It gets this in the QUERY_STRING:
name=Forum&?action=editnews

It notices that it starts with 'name=Forum&?' and removes that part.  Now QUERY_STRING is:
action=editnews

It then parses that string, coming up with:
$action = 'editnews';

Which works fine.  If, however, something went arye with the modification to QueryString.php, it may not do this - in which case:
$?action = 'editnews';
Which would do little good.

-[Unknown]
Logged
lilb
Noobie
*
Posts: 29


Never mess with a 5foot2 readheaded Sicilian!

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #53 on: July 15, 2003, 11:59:12 PM »
Reply with quote

[Unknown] IS THE HERO OF THE DAY!  

heh, well, at least to me, he is!  by changing 2 lines in QueryString.php, I now have a fully functional YabbSE within a Nuke!  WOOHOO!!!  ya rock, dude!!!
Logged
jami
Noobie
*
Posts: 12


W Cremonapalloza

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #54 on: July 18, 2003, 07:39:57 PM »
Reply with quote

only the index page works. with every links I get 404
Logged

"Libertà non è uno spazio libero, è partecipazione "
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #55 on: July 18, 2003, 07:55:42 PM »
Reply with quote

Quote from: jami on July 18, 2003, 07:39:57 PM
only the index page works. with every links I get 404

Then you did something wrong.  Make sure you're accessing it via modules.php?name=Forum or soemthing.

-[Unknown]
Logged
jami
Noobie
*
Posts: 12


W Cremonapalloza

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #56 on: July 19, 2003, 08:19:27 PM »
Reply with quote

re-modded and re-installed.

it's working better, but with some problems:

the links to board and post redirect to the forum's index page ( for example http://localhost/nuke/modules.php?name=Forums&?board=1 ) and the amministration link after loading the page for 1 second redirect immediately to index page.

when trying to modify the profile the ansewr is : Sorry, such file doesn't exist...

but if you're demo is running, this mean I've did something wrong again. To me it seems something in the settings, not in the modding...

plus: why have login and logout in the forum if this operations aren't working and all it's done with phpnuke?
« Last Edit: July 19, 2003, 08:31:19 PM by jami » Logged

"Libertà non è uno spazio libero, è partecipazione "
jami
Noobie
*
Posts: 12


W Cremonapalloza

Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #57 on: July 22, 2003, 08:22:19 AM »
Reply with quote

Second post but with different content...

Dear [Unknown], you're the only one who cares about this mod, don't stop.

By the way, there' s something wrong with you're demo:
I've tried to register in the Forum ( and now i'm the latest member ) but

2: mail() [function.mail]: SMTP server response: 550 User not local. Authentication required for relay
(G:\Inetpub\unknown\www\demos\phpnuke\modules\Forum\Sources\Subs.php ln 453)


So now I'm a forum member ( to post in Issues ) but i can't login both nuke ( module inactive ? ) and yabb.
Logged

"Libertà non è uno spazio libero, è partecipazione "
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #58 on: July 22, 2003, 04:15:20 PM »
Reply with quote

Darn.  I took everything offline because I didn't want to bother with it...

Alright, I'll see what I can do.

I don't have a lot of time on my hands as current, is all.

-[Unknown]
Logged
Purple Raine
Beta Tester
Full Member
***
Posts: 141


Who's Yo Daddy?

WWW
Re:[Alpha 1.5.4] phpNuke Integration 0.2
« Reply #59 on: July 22, 2003, 08:33:07 PM »
Reply with quote

This, in my humble opinion, could possibly be the single-most groundbreaking mod in yabbse history if you follow through with it and make something that works.

I for one am very interested in it, and would love to see it completed.

I would also like to see others help!  =)
Logged
Pages: 1 2 3 [4] 5 6 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Alpha 1.5.4] phpNuke Integration 0.2 « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.026 seconds with 20 queries.