Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 53
Search took 0.00 seconds.
Search: Posts Made By: rrottman
Forum: vB3 Programming Discussions 01-19-2004, 09:56 PM
Replies: 1
Views: 1,160
Posted By rrottman
php based webmail pop3 client

Can anybody recommend any free PHP based webmail client?
Google presents 1000 of webmail clients written in PHP but I wonder whether anybody is willing to share good experienced and give some...
Forum: vB3 General Discussions 01-14-2004, 01:19 PM
Replies: 3
Views: 2,195
Posted By rrottman
NTLDR, that's great -- thanks for the...

NTLDR, that's great -- thanks for the clarification. So would the approach be to fetch some tamplates and store em in evaled vars and finally concatenate them for final output, as in:

...
Forum: vB3 General Discussions 01-14-2004, 12:20 PM
Replies: 3
Views: 2,195
Posted By rrottman
What does print_output do?

Can anybody point me to what vB's print_output does?

I noticed that the last statement in functions.php (that's where it is defined) is an exit, so print_output halts any php-script where it is...
Forum: vB3 Programming Discussions 01-14-2004, 09:04 AM
Replies: 3
Views: 1,039
Posted By rrottman
An excellent web based MySQL administration tool...

An excellent web based MySQL administration tool is freely available at
http://www.phpmyadmin.net

Installation is a 2 minute issue and you can deep dive into your db, add content, delete content,...
Forum: vB3 Programming Discussions 01-14-2004, 09:01 AM
Replies: 1
Views: 1,137
Posted By rrottman
Typo3

Has anybody here ever worked with a CMS called Typo3? Seems excellent to me...
Forum: vB3 General Discussions 01-14-2004, 08:45 AM
Replies: 3
Views: 958
Posted By rrottman
To ensure we get your requirement right: Do you...

To ensure we get your requirement right:
Do you want to generate kind of a frame driven by vBulletin's templates but with the ability and freedom to fill the "main content area" with whatever code...
Forum: vB3 Programming Discussions 01-13-2004, 10:34 PM
Replies: 4
Views: 1,124
Posted By rrottman
PHP based CMS System? Experiences?

Inspired by another thread I was wondering, which PHP based CMS system can you recommend?

I played with the Nuke stuff (didn't like it), with Typo3 and with Mambo so far. Any idea? What is your...
Forum: Modification Requests/Questions (Unpaid) 01-13-2004, 10:29 PM
Replies: 15
Views: 2,586
Posted By rrottman
@oly51: Hmm... I spent a couple of additional...

@oly51:
Hmm... I spent a couple of additional hours on playing with Mambo. I tried to transfer one of my designs to Mambo. You might want to take a quick look: http://www.rottmann.net/mambo .

I...
Forum: Modification Requests/Questions (Unpaid) 01-13-2004, 08:39 PM
Replies: 15
Views: 2,586
Posted By rrottman
I have taken the liberty to take a deeper look...

I have taken the liberty to take a deeper look into Mambo Server 4.5. I have not come across to use Mambo before I have been pointed to it by the posts in this forum.

Generally I like the clean...
Forum: Modification Requests/Questions (Unpaid) 01-13-2004, 03:34 PM
Replies: 15
Views: 2,586
Posted By rrottman
Hmm... that is the only issue I have with mambo,...

Hmm... that is the only issue I have with mambo, it is miserably documented. (No offense ment...)
Forum: Modification Requests/Questions (Unpaid) 01-13-2004, 07:54 AM
Replies: 15
Views: 2,586
Posted By rrottman
If anybody could point me to a *downloadable*...

If anybody could point me to a *downloadable* documentation manual, I'd definitely look into it.
Forum: Modification Requests/Questions (Unpaid) 01-12-2004, 06:49 AM
Replies: 18
Views: 3,953
Posted By rrottman
The output the above code produces on a non VB...

The output the above code produces on a non VB page is:

Welcome back localhost. Thank you for posting 3 so far.
Number of PMs: 0 / Unread: 0.
Your last visit was on: 01-11-2004 11:45 PM....
Forum: Modification Requests/Questions (Unpaid) 01-12-2004, 06:48 AM
Replies: 18
Views: 3,953
Posted By rrottman
@[FG]Omega: To display the information you are...

@[FG]Omega:
To display the information you are describing, you can do your page like this:

<?php
chdir("./forum");
require_once("./global.php");...
Forum: vBulletin 3 Articles 01-11-2004, 08:34 PM
Replies: 113
Views: 29,082
Posted By rrottman
Hmm. I see. I might not have asked my question...

Hmm. I see. I might not have asked my question the right way. (I'm not a native English speaker. Sorry again.)

I was wondering why to use the eval() at all?
Why not:

echo...
Forum: vBulletin 3 Articles 01-11-2004, 08:29 PM
Replies: 113
Views: 29,082
Posted By rrottman
And one more question, Faranth (sorry, knowing...

And one more question, Faranth (sorry, knowing that you're online is just too attractive.. :-) ):

Why do I have to use eval(...). Couldn't I just do a

$output = fetch_template(...);
echo...
Forum: vBulletin 3 Articles 01-11-2004, 08:22 PM
Replies: 113
Views: 29,082
Posted By rrottman
Faranth, my capitalized "help" was in no way ment...

Faranth, my capitalized "help" was in no way ment to offend you in any way. It's just I was in such a despair...

Do I have a template called "main"... honestly, I don't know. Maybe. Is there any...
Forum: vBulletin 3 Articles 01-11-2004, 08:07 PM
Replies: 16
Views: 4,583
Posted By rrottman
@Mist: That's why PHP usually wants it like this:...

@Mist: That's why PHP usually wants it like this:

echo "The forum title is $result[{'title'}]";
Forum: vBulletin 3 Articles 01-11-2004, 08:03 PM
Replies: 113
Views: 29,082
Posted By rrottman
Some more troubleshooting steps it now appears as...

Some more troubleshooting steps it now appears as if the fetch_template does not return any content. It's empty... hmm... HELP!
Forum: vBulletin 3 Articles 01-11-2004, 08:00 PM
Replies: 113
Views: 29,082
Posted By rrottman
@Faranth: Additionally, you say that ...

@Faranth:
Additionally, you say that

$globaltemplates = array('main');

is for caching templates? How does this work? To me it appears as if you just declare a local array? The fetch_template...
Forum: vBulletin 3 Articles 01-11-2004, 07:52 PM
Replies: 113
Views: 29,082
Posted By rrottman
I created a new, empty file. This is all and...

I created a new, empty file. This is all and exactly what's in there:


<?php
chdir("./forum");
error_reporting(E_ALL & ~E_NOTICE);
$globaltemplates = array('main');...
Forum: vBulletin 3 Articles 01-11-2004, 07:49 PM
Replies: 113
Views: 29,082
Posted By rrottman
Faranth, any hint: I copied the first code...

Faranth, any hint:
I copied the first code block (the very easy one :-) ) and tried it: Nothing gets displayed. Any hint?
Forum: vB3 General Discussions 01-11-2004, 09:35 AM
Replies: 6
Views: 997
Posted By rrottman
By the way: I wonder what you keep in mind...

By the way:
I wonder what you keep in mind should happen if a user < the minimum number of postings required tries to post URLs. Do you simply want to delete the URLs? Or do you want to stop the...
Forum: vB3 General Discussions 01-11-2004, 09:33 AM
Replies: 6
Views: 997
Posted By rrottman
Not as far as I know. I am quite busy today so...

Not as far as I know.
I am quite busy today so I cannot do the full hack at this moment. But maybe you can do it yourself with a little bit of help?

Take a look at...
Forum: vBulletin 3 Articles 01-09-2004, 04:41 PM
Replies: 16
Views: 4,583
Posted By rrottman
So the correct way would be to assign the value...

So the correct way would be to assign the value to a non-array var before you echo it with double quotes:


$echostr = $result['title'];
echo "The forum title is $echostr";


I know that...
Forum: vB3 General Discussions 01-09-2004, 04:37 PM
Replies: 82
Views: 7,890
Posted By rrottman
Did I miss anything or has the HTL not been...

Did I miss anything or has the HTL not been released, yet?
I found no place where I could have downloaded it...
Showing results 1 to 25 of 53

 
Forum Jump

All times are GMT. The time now is 05:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02951 seconds
  • Memory Usage 2,046KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (40)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete