Print Topic - Archive

E-Blah Community  /  News  /  Portal
Posted by: Justin, November 30, 2002, 9:53pm
For those that want a portal, here it is. Upload Portal.v1m to your mods folder. Upload Portal.pl to your Blah/Code directory. Sorry, gtg ... have fun!



- Justin
Posted by: gyrmn, December 4, 2002, 8:07pm; Reply: 1
Odd....made sure permission were correct, went backin and they were @644. Had to copy Blah.pl local, delete on the server, re-upload and was able to CHMOD. <!>.

Life is cool. Broken links for some graphics, will deal with after roadtrip.

Need to get back to original "theme" though :)
Posted by: superfalon, December 12, 2002, 7:15am; Reply: 2
What is a Portal?
Posted by: gyrmn, December 12, 2002, 9:29am; Reply: 3
This particular one gives you all the info about posted msgs etc in one very nice package.
Posted by: superfalon, December 12, 2002, 12:52pm; Reply: 4
O.K. Thanks!  How is your website doing?
Posted by: osiriss, December 12, 2002, 4:19pm; Reply: 5
hurray! a new gadget and god knows how much I love gadgets!!!  I'll play with this one later on and let you know what I think of it.
Posted by: superfalon, December 12, 2002, 5:34pm; Reply: 6
What is Pre-Release Committee mean?
Posted by: osiriss, December 13, 2002, 3:00am; Reply: 7
it means that we are kinda beta tester for new release.  And also we try to improve the forum program.  I myself can only give out ideas.  I'm no coder guru like Justin, but I'm a true forum addict, and know when I see a real good message board.  And trust me this one is!!!

Check out my sba link in my signature and check out the forums there.  It just goes to show you how customisable they are!
Posted by: superfalon, December 15, 2002, 7:07am; Reply: 8
It's a great board!  But it would be the ultimate board if it was PHP :)
Posted by: osiriss, December 16, 2002, 11:20am; Reply: 9
well that one is a lot easy to install on most server tough.  Not every host support PHP.

like my hoster barely support anything else than cgi or perl.  so this board is the ultimate for me ;D

But I did heard that PHP was really good as well. 
Posted by: Justin, December 16, 2002, 5:35pm; Reply: 10
PHP ... more people like it ... why? It's 'faster' in some areas (mainly because it uses a database more than it does text files).


I just learned Perl, so I donno much about PHP ... I can program a little in PHP (as you can see from the homepage) ... but as you can see from the d/l page, PHP takes a while to check file sizes and open a text file ... or it does here (and this is a fast server).



- Justin
Posted by: superfalon, December 17, 2002, 1:15pm; Reply: 11
Hey Justin,

I just posted that thing about PHP just to see if you were checking :)  Also to find out if you were still alive since I have not talked to you lately. As far as boards go, I have experimented with many and um I think eblah blows them away :)
Posted by: Justin, December 17, 2002, 4:59pm; Reply: 12
A lot of boards just have a lot of features that common people (ie: phpBB) do not need. For instance, phpBB2 has users create they're own templates (for EACH page), and guess what ... now days all you see is boards that use phpBB and all of them look exactly the same, nothing changed ... with E-Blah, you can at least change the entire layout (and individual layouts). *shrug*


- Justin
Posted by: osiriss, December 18, 2002, 8:44am; Reply: 13
lol yes indeed!
Posted by: importracer, December 31, 2002, 11:06pm; Reply: 14
Ok, I have the portal mod installed, but I have a few questions.

I modified the code slightly, to arrange things. I wanted the "Latest Threads" post under the "Board Statistics" and i figured that out ok, but it is right up on the "Board Statistics" table. How do I increase the spacing inbetween the tables?

Also, The "News" table seems to spaced further down than the other tables. How can I adjust this?

How can I make all my home buttons direct to the portal instead of the regular homepage?
Posted by: importracer, December 31, 2002, 11:54pm; Reply: 15
I forgot to add my url as a visual aide it's http://mtgo.systemfool.com/~importracer/cgi-bin/Blah/Blah.pl

Thanks in advance for the help.
Posted by: Justin, January 1, 2003, 10:13am; Reply: 16
You need a <br> under the board stats I think.


News should be verticaly alighned to the top (valign="top").




- Justin
Posted by: Justin, January 1, 2003, 10:14am; Reply: 17
Oh ... Modify Routiens.pl under header for the "Home" link ...
Posted by: importracer, January 1, 2003, 2:02pm; Reply: 18
Thanks, I figured it out there was a <br> at the begining of the "News" string. All I did was delete this and put a <br> at the beginning of the "LatestThreads" string. Oh I also moved the "&LatestThreads;" to go underneath the "&LoadStats;"

I am still trying to figure out the "Routines.pl" thing though. I also wanted the "Logout" to redirect to the Portal as well. I am assuming this can be done in the "Routines.PL" as well. Basically I want any action that would normally take you to the regular homepage in "Blah.pl" to go to the Portal instead.

One other thing I've noticed is the time in the Portal is not the same as in the regular homepage. Is there a way I can connect to the corrected time that I setup in on the admin page?

Btw, I just wanted to thank you for eblah, this is the easiest board system that I have found to use. And it contains almost all the features that my website needed.
Posted by: importracer, January 1, 2003, 2:22pm; Reply: 19
Disregard the time issue, I figured it out, there was a slight delay from the server that was creating this error.
Posted by: Justin, January 1, 2003, 2:30pm; Reply: 20
Ummm ...


Code
   $menubar = qq~<a href="$surl">$img{'home'}</a>$help $msp<a href="$surl,v=cal">$img{'cal'}</a> $msp<a href="$surl,v=search">$img{'search'}</a>~;
   if($settings[4] eq 'Administrator') { $menubar .= qq~ $msp<a href="$surl,v=admin">$img{'admin'}</a>~; }
   if($username ne 'Guest') { $menubar .= qq~ $msp<a href="$surl,v=profile">$img{'profile'}</a> $msp<a href="$surl,v=notify">$img{'notify'}</a> $msp<a href="$surl,v=login,p=3">$img{'logout'}</a>~; }
      else { $menubar .= qq~ $msp<a href="$surl,v=register">$img{'register'}</a> $msp<a href="$surl,v=login">$img{'login'}</a>~; }




- Justin
Posted by: importracer, January 1, 2003, 3:44pm; Reply: 21
Thanks, that solved my "Home" button problems.

Where do I make the changes in the login and logout redirect to go to the portal?
Posted by: importracer, January 1, 2003, 3:53pm; Reply: 22
Ok, I see the &redirect; in "Login.pl" at line 234 do I just change line 232?
From
$url = "$surl,b=$URL{'b'}";
to
$url = "$surl,v=portal;
Posted by: importracer, January 1, 2003, 4:00pm; Reply: 23
Ok, I figured out the Logout redirect. I changed line 232 from

$url = "$surl,b=$URL{'b'}";

to

$url = "$surl,b=$URL{'b'},v=portal";

I just need to figure out the login redirect now.
Posted by: Justin, January 1, 2003, 5:14pm; Reply: 24
         $url = "$scripturl";


Should be:


         $url = "$scripturl,v=portal";



- Justin
Posted by: importracer, January 1, 2003, 6:38pm; Reply: 25
Thanks Justin, that did the trick.
Posted by: importracer, January 4, 2003, 10:16pm; Reply: 26
Is the portal compatible with 2.7?
Posted by: importracer, January 5, 2003, 11:47pm; Reply: 27
Happy to say that I have upgraded to 2.7 without a glitch. ;D
Print page generated: December 3, 2008, 2:56pm