vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBadvanced CMPS (https://vborg.vbsupport.ru/forumdisplay.php?f=101)
-   -   vBadvanced CMPS - Old Support Thread (https://vborg.vbsupport.ru/showthread.php?t=73845)

Scutter 07-27-2004 09:24 AM

quick question regarding the last xxx posts. with the current version of vBAdvanced I use, users can still see the topics in this list whether they can access them or not, with this version can this list be restricted so that only topics they can access are displayed?

mattster2002 07-27-2004 11:46 AM

Hey Would dearly love to make a post here - Recently installed your hack and its very nice. I am upgrading from PHPNuke/PhpBB heavily modded (especially the theme). I found it was quite an effort to convert my phpnuke theme across, but well worth the effort. Just thought i might post one thing in the style system (for the borders).

I had to do a tiny bit of modding, but i think it'd be a good idea to have themes for blocks so you dont have to design each block individualaly, what i mean is a standard for blocks to be done, I've done a makeshift version that is just block_open module_content and block_close - works like a charm at the moment.

Love the module

Tigga 07-27-2004 03:37 PM

tccra - I'm pretty sure that should work. Just create the style, then select that style on your CMPS page in the admin cp.

Scutter - Your users should only be able to see the threads they have permission to see in either the CMPS or the Homepage. If not then you most likely have your forum permissions set incorrectly.

mattster2002 - I almost changed it so that all of the modules would be surrounded by one template where you could change that and have all of the module blocks change, but ended up not doing it mostly because I couldn't think of a good way to put the titles in the blocks when they contained links. I'm thinking I may just add those as phrases and change the way it's done in a future version though. :)

DrkFusion 07-27-2004 04:32 PM

Outstanding job Brian, the load was a +++++ for me to handle because of the required mods the site relies on with a little code optimization this hack is working sweet and very sound!

>> Clicks Install <<

Tigga 07-27-2004 05:00 PM

Why thank you sir. :)

Scutter 07-27-2004 05:40 PM

Quote:

Originally Posted by Tigga
Scutter - Your users should only be able to see the threads they have permission to see in either the CMPS or the Homepage. If not then you most likely have your forum permissions set incorrectly.

settings are all OK and they can not access the posts, but they can see the topic titles which I do not want them to see. Is there a way to stop these showing or is it a case where I say only certain forums will show in the latest topics?

Yuber 07-27-2004 08:32 PM

Kickass, thanks for sharing. Any ideas on what future addon modules you'll be adding such as weather?

PranK 07-28-2004 02:54 PM

Quote:

Originally Posted by Tigga
PranK - Seems to load at about the same speed as your forum's home for me. Do you have the 'Quick Moderation' module enabled? If so, that could slow it down on your account since it has to check a couple of tables. That would only affect mods and admins though since they're the only ones that can see the module. ;)

Sorry mate, totally forgot about checking back here..

Ok sweet, well It does load quite slowly for me, but nobody else has complained about it, so it must just be the quick moderation.

Thanks Tigga!

Christian

Garfield01 07-30-2004 01:58 PM

It might be a great hack, but it don?t work to me:(
I get:
Quote:

SELECT IF(votenum >= 2, votenum, 0) AS votenum, IF(votenum >= 2 AND votenum != 0, votetotal / votenum, 0) AS voteavg,
thread.threadid, thread.title, replycount, postusername, postuserid, thread.dateline AS postdateline, thread.lastposter, thread.lastpost, IF(views<=replycount, replycount+1, views) AS views, forumid, post.postid, pagetext, allowsmilie
, showsignature, usertextfield.signature
,thread.iconid AS threadiconid, iconpath AS threadiconpath
, avatarpath, NOT ISNULL(avatardata) AS hascustom, customavatar.dateline AS avatardateline, avatarrevision
, NOT ISNULL(subscribethread.subscribethreadid) AS subscribed
, attachment.filename, attachment.filesize, attachment.visible, attachmentid, counter, thumbnail, LENGTH(thumbnail) AS thumbnailsize
FROM thread AS thread
LEFT JOIN post AS post ON (post.postid = thread.firstpostid)
LEFT JOIN icon USING (iconid)
LEFT JOIN attachment AS attachment ON (post.postid = attachment.postid)
LEFT JOIN user AS user ON (user.userid = post.userid)

LEFT JOIN usertextfield AS usertextfield ON (post.userid = usertextfield.userid)

LEFT JOIN avatar as avatar ON (avatar.avatarid = user.avatarid)
LEFT JOIN customavatar as customavatar ON (customavatar.userid = user.userid)

LEFT JOIN subscribethread AS subscribethread ON (subscribethread.threadid = thread.threadid AND subscribethread.userid = '59')
LEFT JOIN deletionlog AS deletionlog ON (thread.threadid = deletionlog.primaryid AND type = 'thread')
WHERE forumid IN(93) AND thread.visible = 1 AND thread.open != 10 AND deletionlog.primaryid IS NULL
GROUP BY post.postid
ORDER BY postdateline DESC
LIMIT 4
mysql error: Column: 'iconpath' in field list is ambiguous

mysql error number: 1052
Can anyone help me please?
Edit: I?m using VB 3.0.3
Garfiled

Tigga 07-30-2004 02:42 PM

Sounds like you've got another hack installed that's clashing (maybe the forum specific icon's one?). If you'll look in your modules/news.php file for:

iconpath AS threadiconpath

And replace that with:

icon.iconpath AS threadiconpath

That should fix the problem.

Garfield01 07-31-2004 08:38 AM

Quote:

Originally Posted by Tigga
Sounds like you've got another hack installed that's clashing (maybe the forum specific icon's one?). If you'll look in your modules/news.php file for:

iconpath AS threadiconpath

And replace that with:

icon.iconpath AS threadiconpath

That should fix the problem.

Great, it?s fixed!!
Thx!!!!!!!!!!!!!!!!!
Gafiled

Warlord 07-31-2004 05:57 PM

Great hack! *clicks install*

dina 08-02-2004 10:09 AM

Hi,

I've just upgraded my board to 3.0.3 and I have a problem with viewing the portal. I'm sure it's just a stupid little error I can't see, but I still hope someone can point me in the right direction ;)

I can't see any error messages, the portal site is just blank (as in http://www.mydomain.com is blank, while http://www.mydomain.com/index.php is fine since I never replaced it. http://www.mydomain.com/portal.php is also blank).

Any ideas? Like I said, just upgraded the board, I've had the portal running at the board for quite a few weeks now with no problems, so there's no database error.

bonnmac 08-02-2004 05:06 PM

rerun the templets part of the install again basically rerun all the install once again it will work

dina 08-03-2004 09:11 AM

Quote:

Originally Posted by bonnmac
rerun the templets part of the install again basically rerun all the install once again it will work

No, there's nothing missing from the templates. Any other ideas? How can I quickly deactive the portal for now? As in make the http://www.mydomain.com point to index.php instead of portal.php

weirdpixels 08-03-2004 12:31 PM

great hack and very easy to install :)

XtReMaTriX 08-03-2004 01:39 PM

I get this error when trying to install:
Quote:

Parse error: parse error in /usr/home/xtremods/public_html/vbulletin/includes/functions.php on line 1887

Fatal error: Call to undefined function: devdebug() in /usr/home/xtremods/public_html/vbulletin/includes/functions.php on line 952
I have VB 3.0.3. This is the 1st Hack that I am trying after I upgraded from 2.2.8 to 3.0.3.

Any Ideas?

weirdpixels 08-03-2004 03:40 PM

well if this is the first hack you are installing, I would suggest checking the code edits in the functions.php

The hack works fine with vb 3.0.3

XtReMaTriX 08-04-2004 03:58 PM

Quote:

Originally Posted by weirdpixels
well if this is the first hack you are installing, I would suggest checking the code edits in the functions.php

The hack works fine with vb 3.0.3

This is the 1st hack i am installing since I upgraded to 3.0.3... I have checked Funtions.php 5 times aready and tried the install 2 times already... I cant figure out what i am doing wrong...

One thing i did notice was on the function_calander.php page, the code I was to find and replace, wasnt exactly the same...

It said to find this code:
Code:

function construct_calendar_output($today, $usertoday, $calendarinfo, $fullcalendar = 0, $weekrange = '')
{
        global $birthdaycache, $eventcache, $bbuserinfo, $vbphrase, $stylevar, $show, $offset, $colspan, $days, $months, $show;

But in my page it was actually this:
Code:

function construct_calendar_output($today, $usertoday, $calendarinfo, $fullcalendar = 0, $weekrange = '')
{
        global $birthdaycache, $eventcache, $bbuserinfo, $vbphrase, $stylevar, $show, $offset, $colspan, $days, $months;

the $show was not listed on mine...

Can anyone help? I can try installing the hack again but i made sure i followed the instructions to the mark... I dont know what to do to get this stuff working...

Reeve of shinra 08-04-2004 04:02 PM

Dreamweaver corrupts the function.php file if your using that to edit.

Tigga 08-04-2004 04:03 PM

The code in the functions_calendar.php file changed in 3.0.2 or 3 (I don't remember which). They had an extra $show variable in there, but finally removed it. That is the correct code to change though.
Were you by chance editing your functions.php file with Dreamweaver or another similar program? If so, try editing the file with Notepad or another simple text editor as programs like Dreamweaver have been known to cause problems in the past. As long as you're not editing with one of those programs and the change was made correctly then you shouldn't have any problems.

weirdpixels 08-04-2004 04:06 PM

yea i had the same issue with $show when installing the hack, this should not have been a problem.
when do you get the following error? on what page?
Quote:

Parse error: parse error in /usr/home/xtremods/public_html/vbulletin/includes/functions.php on line 1887

Fatal error: Call to undefined function: devdebug() in /usr/home/xtremods/public_html/vbulletin/includes/functions.php on line 952

pip_9 08-05-2004 07:20 PM

Hello,
I have just installed vBadvanced CMPS and I can add pages and do other things but when I try to get to the cmps_index.php page this error comes up:
"Parse error: parse error, unexpected '/' in /home/gadgetz/public_html/sneakypipsextips/cmps_index.php on line 19" I am sure I have the server path right is there anything elce taht could be wrong.
Thanks for the help
Phil (Sneaky Pip)

Kwak 08-05-2004 07:54 PM

Quote:

Originally Posted by Reeve of shinra
Dreamweaver corrupts the function.php file if your using that to edit.

Does Dreamweaver do this for all other files when you are editing simple lines?

Tigga 08-06-2004 04:14 AM

Quote:

Originally Posted by pip_9
Hello,
"Parse error: parse error, unexpected '/' in /home/gadgetz/public_html/sneakypipsextips/cmps_index.php on line 19" I am sure I have the server path right is there anything elce taht could be wrong.
Thanks for the help
Phil (Sneaky Pip)

The only thing that would cause that is incorrectly modifying the chdir line... What do you have in that line?

Durtay 08-06-2004 04:37 AM

Quote:

Originally Posted by iKwak
Does Dreamweaver do this for all other files when you are editing simple lines?

Not every file, but some. It's safer to not use Dreamweaver except for template editing.

weirdpixels 08-06-2004 11:25 AM

i have always used dreamwaver for editing files, never had a problem

XtReMaTriX 08-06-2004 08:48 PM

Thanks Guys.. Dreamweaver was the problem...

:banana:

Eagle Creek 08-09-2004 11:44 AM

I have one big question (actually, 2 :-))

1. How can I manage it? Will my control panel be the same? Can I use it on 3.0.3?
2. This is the problem. I want to set up a site with many manuals, news posts, downloads etc. etc.. I currently use postnuke en phpnuke for this. But, the forums where they are working with are PHPBB and not Vbulletin. So I'm looking for a nice Vbulletin solution.
Is vBadvanced capaple to manage a huge ammount of downloads, manuals and news-posts? Will it look like a normal site? Just just with links on the side.
It has to be easy understandeble for every n00buser.

is this possible?

Please help me. If it can do what I want this is just perfect!

Eagle Creek 08-09-2004 12:39 PM

It doesn't work. Can somebody help me?

Quote:


Warning: chdir(): No such file or directory (errno 2) in /home/antispy/public_html/cmps_index.php on line 19

Warning: main(./global.php): failed to open stream: No such file or directory in /home/antispy/public_html/cmps_index.php on line 25

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/antispy/public_html/cmps_index.php on line 25

Bad Bunny 08-10-2004 04:56 AM

Quote:

Originally Posted by weirdpixels
i have always used dreamwaver for editing files, never had a problem

Yeah, well I do as well. But every now and then I come across a file it can't do for some reason. It's far and few between.

pip_9 08-10-2004 05:24 AM

Quote:

Originally Posted by Tigga
The only thing that would cause that is incorrectly modifying the chdir line... What do you have in that line?

Hey Tigga,
This is what I have in the line: /home/gadgetz/public_html/sneakypipsextips
gadgetz is my user name (for my host) and sneakypipsextips is the forum name.
The website address is http://gadgetz4free.com/sneakypipsextips
Thanks for the help
Phil

stanmo 08-12-2004 05:37 AM

I seem to have a problem. The problem resides with the Post Icon. The image I'm referring to is 'deficon'. No matter what I do, the result is a broken link. It seems that the installation process couldn't update that specific icon. All the other icons are fine. I am using 3.0.3. Can someone please help me? Thanks.

ChuanSE 08-12-2004 05:53 AM

put it in a image folder where your indexcmps file is /www/images like it is in /www/forum/images

which is your link to forum?

Davey 08-15-2004 12:50 AM

I get to installing the settings bit and it spews out this error.

Fatal error: Call to undefined function: build_datastore() in /content/StartupHostPlus/a/e/www.ae-hq.co.uk/web/kc/admincp/vbacmps_install.php on line 1352

Any ideas? This CMS looks very nice. I am running vB 3.0.0 RC 2.

ambrosious 08-15-2004 02:17 AM

I cannot seem to get the reputation images to transfer over. The reputation stayed there, but my board get the "User is greatUser is greatUser is great" ad infinitum. Any ideas?

Halarkin 08-16-2004 08:42 AM

this and regular vba seems to run painfully slow on my board.. 20K members and 1.2mil posts.. the forum runs perfect, but this front end is like sludge.

MnBthunDER 08-16-2004 05:53 PM

Well anyone had any idea on how to put a paypal icon by adding a new module on the vbAdvance homepage? I'm a noob in php so I hope that anyone who could give me a clear / step-by-step tutorial would be really helpful

thanks in advance

Megadeuce 08-16-2004 05:57 PM

Does this have to be uninstalled before you ugrade to a new version of vb?

ambrosious 08-17-2004 01:14 AM

I also find it runs like cold molassas uphill on a slow day.


All times are GMT. The time now is 11:00 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.01754 seconds
  • Memory Usage 1,836KB
  • 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
  • (2)bbcode_code_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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