vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   WebTemplates 3.5.x: VB Integrated CMS (Content Management System) (https://vborg.vbsupport.ru/showthread.php?t=103076)

Nick0r 05-09-2006 07:18 PM

Any ideas anyone? logician?

Makaveli105 05-09-2006 10:30 PM

Awesome hack, I have 2 questions though!

1. I have created my own footer, and have assigned my HTML page to it, and put $footer in my HTML, but it shows my default forum footer, instead of the custom one I created for these pages.

2. Is there a way to force a certain style to the custom pages?

Thanks :D

Logician 05-10-2006 01:18 PM

Quote:

I'm getting errors with editors.php - whenever I (or an assigned editor, non-admin) goes to edit one of the pages, they can view the HTML code and can make the appropriate change but as soon as they press update they go to editors.php and receive a no permission error.

This is not something I can confirm when I test it in my enviroment. It sounds like you have a clashing hack issue. I appreciate if you can check if there is a clash with another hack. Please turn off all other hacks, let only webtemplates installed and test it out if this still happens. If this fixes, then you can enable other pluggins one by one until you find the culprit.

Nick0r 05-10-2006 01:33 PM

Logician, just done that with every plugin + product and it still didn't work. Could it be because I run 3.5.1? That's the best I can think of to be honest.

Or because I never un-installed/removed the old version of webtemplates before I upgraded from 3.0.x?

Nick0r 05-10-2006 03:39 PM

Ah ha, template revert = fixed. Cheers all.

Keyser520 05-10-2006 06:32 PM

What would you recommend using to create a home page that can integrate with all this other stuff?

Logician 05-11-2006 09:07 AM

Quote:

Originally Posted by Makaveli105
1. I have created my own footer, and have assigned my HTML page to it, and put $footer in my HTML, but it shows my default forum footer, instead of the custom one I created for these pages.

you created your footer as a "webtemplate footer", not a regular footer template right? Also you made sure you set your webtemplate to use that footer in edit webtemplate page?

Shaliza 05-12-2006 10:40 AM

So, if one doesn't want to use any of a template's layout, they don't have to? They can use their own layout with the only vB-related thing being the link & of course the code?

Also, does it have pagination & a feature where people can make comments? The comments thing isn't really a big deal, as I can just make posts for that if there isn't one.

Logician 05-12-2006 01:46 PM

Quote:

Originally Posted by Shaliza
So, if one doesn't want to use any of a template's layout, they don't have to? They can use their own layout with the only vB-related thing being the link & of course the code?

yes

Quote:

Also, does it have pagination & a feature where people can make comments? The comments thing isn't really a big deal, as I can just make posts for that if there isn't one.
no

Keyser520 05-12-2006 01:53 PM

What would you recommend using to create a home page that can integrate with all this other stuff?

Logician 05-12-2006 05:01 PM

Quote:

Originally Posted by Keyser520
What would you recommend using to create a home page that can integrate with all this other stuff?

Maybe you can use vbadvanced which is a good hack. Or check my FAQ about using webtemplates as site main page.

Shaliza 05-13-2006 09:18 AM

Good to know. I think I'll just use this instead of integrating a CMS.

-=Sniper=- 05-25-2006 12:35 PM

very cool hack man, just made this here

http://www.hardwareforums.com/view.php?pg=reviews

bada_bing 05-25-2006 02:22 PM

Hey Everyone this is a great hack.. Can we you all share what you are using this for and the code? I would like to get more use for this hack and would like to see what everyone else is doing?

Kihon Kata 05-27-2006 01:59 PM

Hey Logician, I noticed that there was a spot to upload(import) templates via xmls. Is there a list of posted .xmls for templates avail anywhere?

Logician 05-27-2006 02:06 PM

Quote:

Originally Posted by Kihon Kata
Hey Logician, I noticed that there was a spot to upload(import) templates via xmls. Is there a list of posted .xmls for templates avail anywhere?

I designed that structure so that people can share their webtemplate/webqueries with eachother easily. So it would make sense only if hack users post their own webtemplate designs. However unfortunately people don't use it.

Kihon Kata 05-27-2006 02:19 PM

Thanks for the quick reply. Oh, that sux. This is such a powerful hack and no one shares eh? darn

msimonds 05-30-2006 12:27 PM

Quote:

Originally Posted by Nick0r
Ah ha, template revert = fixed. Cheers all.

NickOr - which template was it man

rrr 05-30-2006 09:05 PM

Could someone help me with a web query?

I created a new profile field that asks a question (field8) and I need to see all the answers to that question on one page sorted by usergroup (usergroupid: 10)

Tim Skellett 05-31-2006 09:23 AM

Quote:

Originally Posted by Logician
I designed that structure so that people can share their webtemplate/webqueries with eachother easily. So it would make sense only if hack users post their own webtemplate designs. However unfortunately people don't use it.

First off, many thanks indeed for the hack!
Second, I will be implementing sa project soon within it, and when I have it all finished, I will learn how to make the .xml then post it in a new thread here, so your feature of sharing .xml's will get some input at last.

Logician 05-31-2006 01:12 PM

Quote:

Originally Posted by rrr
Could someone help me with a web query?

I created a new profile field that asks a question (field8) and I need to see all the answers to that question on one page sorted by usergroup (usergroupid: 10)

SELECT f.field8, u.username, u.usergroupid, u.userid
FROM user u
LEFT JOIN userfield f ON u.userid = f.userid
WHERE usergroupid =10

Kihon Kata 05-31-2006 01:27 PM

Yay, can't wait :banana:
Quote:

Originally Posted by Tim Skellett
First off, many thanks indeed for the hack!
Second, I will be implementing sa project soon within it, and when I have it all finished, I will learn how to make the .xml then post it in a new thread here, so your feature of sharing .xml's will get some input at last.


rrr 05-31-2006 06:00 PM

Quote:

Originally Posted by Logician
SELECT f.field8, u.username, u.usergroupid, u.userid
FROM user u
LEFT JOIN userfield f ON u.userid = f.userid
WHERE usergroupid =10


Thanks! I put that in the Query box and in the Query Result Row area I put:

$WQfield[field8]

And in my webtemplate I put the call to that new webquery I created:

$WQ_newquery

But the field8 doesn't show up when I view the page. Any suggestions?

Logician 05-31-2006 06:09 PM

Defined that webquery in that webtemplate? (Edit Webtemplate, mark "WebQueries Used in This Page")

rrr 05-31-2006 07:43 PM

Quote:

Defined that webquery in that webtemplate? (Edit Webtemplate, mark "WebQueries Used in This Page"
Yep, the box next to that webquery is checked.

Was I supposed to edit the query code you posted in any way?

Quote:

SELECT f.field8, u.username, u.usergroupid, u.userid
FROM user u
LEFT JOIN userfield f ON u.userid = f.userid
WHERE usergroupid =10

PanamaRed 06-01-2006 12:38 AM

Cant get it to install.. "Logician's webtemplates" never shows in the ACP. I see Logician's webtemplate settings, under VB options, but there is no export/import option to it to complet the install. I reloaded cpnav_webtemplates also no luck there either..

PanamaRed 06-02-2006 06:03 PM

Little bit of help anyone??

JohnBee 06-03-2006 06:48 PM

I'm sorry if this has already been answered but I was not able to find it.
Is it possible to use webtemplates as a CMS and have it display pages?

for example if I want to compose a product review and it was 12 pages long
is there a way to use webtemplates to display page 1, 2 3 4 etc?

Logician 06-03-2006 07:37 PM

Quote:

Originally Posted by JohnBee
I'm sorry if this has already been answered but I was not able to find it.
Is it possible to use webtemplates as a CMS and have it display pages?

for example if I want to compose a product review and it was 12 pages long
is there a way to use webtemplates to display page 1, 2 3 4 etc?

There is no automatic way, sorry! If you want to do it, you have to do it manually (ie split review into 12 different WTs and link eachother at the bottom of all).

Quote:

Cant get it to install.. "Logician's webtemplates" never shows in the ACP. I see Logician's webtemplate settings, under VB options, but there is no export/import option to it to complet the install. I reloaded cpnav_webtemplates also no luck there either..
I didn't see this message before. Is it you who emailed me and I replied? If not, do you still need help?

PanamaRed 06-04-2006 04:10 PM

Quote:

I didn't see this message before. Is it you who emailed me and I replied? If not, do you still need help?
Yes I am the one that emailed, Still can't get it to work.. Deleted the whole thing re-downloaded and re-uploaded.. Loaded the file cpnav_webtemplates as ASCII.. Cant access the webtemplates ACP, If I try to go to it manualy I get this message:

Warning: main(./global.php): failed to open stream: No such file or directory in /data/10/0/30/39/845854/user/866665/htdocs/forum/upload/forum/admincp/wt_wt.php on line 31

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/services/vux/lib/php') in /data/10/0/30/39/845854/user/866665/htdocs/forum/upload/forum/admincp/wt_wt.php on line 31

PanamaRed 06-04-2006 04:20 PM

I don't see this file under /includes/

require_once(DIR .'/includes/adminfunctions_template.php');

And this is line 31..

require_once('./global.php');

Logician 06-04-2006 04:21 PM

Quote:

Originally Posted by PanamaRed
Yes I am the one that emailed, Still can't get it to work.. Deleted the whole thing re-downloaded and re-uploaded.. Loaded the file cpnav_webtemplates as ASCII.. Cant access the webtemplates ACP, If I try to go to it manualy I get this message:

Warning: main(./global.php): failed to open stream: No such file or directory in /data/10/0/30/39/845854/user/866665/htdocs/forum/upload/forum/admincp/wt_wt.php on line 31

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/services/vux/lib/php') in /data/10/0/30/39/845854/user/866665/htdocs/forum/upload/forum/admincp/wt_wt.php on line 31

If you are sure you applied installation instructions correctly and determined to have the hack, PM me FTP access to your server and vb admin cp access and let me install it for you.

I'm positive there is nothing wrong with the hack.

Logician 06-04-2006 04:23 PM

Quote:

Originally Posted by PanamaRed
I don't see this file under /includes/

require_once(DIR .'/includes/adminfunctions_template.php');

And this is line 31..

require_once('./global.php');

Does your board load fine? That file (adminfunctions_template.php) is a part of default vbulletin installation. If you don't see it, there is definetely something wrong with your vb installation.

PanamaRed 06-04-2006 07:45 PM

Never mind I got it.. I had uploded the forum folder as it's own folder, instead of unpacking it into the appropriate areas... Sorry I am new to this stuff..

Appriceate all of the help :)

Reeve of shinra 06-06-2006 02:30 AM

I'm kind of curious - does anyone use this like a wiki?

Eagle Creek 06-06-2006 06:28 PM

Wow great hack!

And does 'Who's Online' reconize the locations?

Logician 06-06-2006 06:31 PM

Quote:

Originally Posted by Eagle Creek
Wow great hack!

And does 'Who's Online' reconize the locations?

yes it does

Eagle Creek 06-06-2006 06:36 PM

Perfect!
Thx.

jeffj 06-07-2006 06:59 PM

I have a question about this mod.

I am creating a new set of forums on my site and these forums will contain "articles" to which no one can reply. I want to have these "forum ids" contain a postbit that has a different look than my standard "threads and posts" since people cannot reply to these posts.

will this mod allow me to create custom pages to contain the content of these threads and posts (one post per thread).

thanks in advance.

Deepdog009 06-11-2006 03:24 PM

How do I change the style in your hack?
I tried some stuff, but it aint working. I want to change the template style and background pic.:confused:


All times are GMT. The time now is 11:12 AM.

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.01697 seconds
  • Memory Usage 1,835KB
  • 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
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete