Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBulletin-Yellow Pages with advertising management Details »»
vBulletin-Yellow Pages with advertising management
Version: 1.0.2, by Vossi Vossi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.x.x Rating:
Released: 01-11-2011 Last Update: 09-09-2011 Installs: 81
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

What is vBulletin-Yellow Pages with advertising management?

This addon is a comfortable system for Yellow Pages with the opportunity to manage those entries within the forum as advertisements. Some of the functions are:
  • Moderated entries possible
  • Additional images in front of categories and subcategories
  • Uses the vBulletin integrated search
  • vBulletin standards for settings and permissions
  • Supports vB-SEO and vB-CMS
  • Optional entryfields in categories
  • Facebook-Integration
  • Thumbnail-Service, link- and banner usage possible
  • Google Maps
  • Additional images for specific entries possible
  • Uses the comment system
  • Rate entries
  • Widgets supported within the vB-CMS of vBulletin Suite
  • Uses vBulletin given positions to place advertisements of the entries within the forum
Installation:

- Upload all files in 'upload' to your server

- set 0777 permission to the following directory:
  • /vbyellowpage/backup
- Import 'product-vbyellowpage.xml' in AdminCP

Afterwards import the 'product-vbyellowpage.xml' in admincp.

Then define the general settings in admincp and the usergroup persmission.
Also check the administrator permissions.

Now you can can create categories with additional settings (e.g. entryfields).Optional k?nnen jetzt die Funktionen f?r Google Maps, Premium-Eintr?ge oder Thumbnail-Service etc. eingerichtet werden.

It is recommended to use TMS. If you dont use TMS you need to do the template modifications by your own, have a look at the '/template_modification'-folder within the product file for this.

History:
  • 1.0.2 - First public release
Copyright, Sponsor und more:


This addon has been sponsored by weinviertel.net. Therefore there is a sponsor link in the copyright footer. It is NOT ALLOWED to change or delete the copyright footer of this addon, it's prohibited to change it in general or even parts of it.

If you are interested in getting a brandingfree version (lifetime) of this addon, then get in touch with me by Personal Message or read the informations to this addon in admincp.

Download Now

File Type: zip vbyellowpages102.zip (162.1 KB, 123 views)
File Type: zip vbyellowpages102vb415.zip (164.4 KB, 330 views)

Screenshots

File Type: png 0-home.png (74.7 KB, 0 views)
File Type: jpg 1-catview.jpg (85.2 KB, 0 views)
File Type: jpg 2-entryview.jpg (80.7 KB, 0 views)
File Type: jpg 3-premium.jpg (74.6 KB, 0 views)
File Type: png 4-admincpmenu.png (5.0 KB, 0 views)
File Type: jpg 5-generalsettings.jpg (69.9 KB, 0 views)
File Type: jpg 6-thumbnailservice.jpg (122.2 KB, 0 views)
File Type: png 7-googlemaps.png (37.1 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
puertoblack2003

Comments
  #202  
Old 08-06-2011, 01:28 AM
crowshead crowshead is offline
 
Join Date: Apr 2010
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do I change ownership?

Can I set it up to do that automatically?
Reply With Quote
  #203  
Old 08-06-2011, 09:26 AM
WarLion's Avatar
WarLion WarLion is offline
 
Join Date: Jun 2006
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tag hoping will update for 4.1.x
Reply With Quote
  #204  
Old 08-06-2011, 09:45 AM
WarLion's Avatar
WarLion WarLion is offline
 
Join Date: Jun 2006
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

fixed in the file vbyellowpages.php find in the line 881
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/functions_wysiwyg.php');
        
$message convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    }
    else
    {
        
$message =& $vbulletin->GPC['message'];
    } 
change for
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/class_wysiwygparser.php');
        
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
        
$message $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    }
    else
    {
        
$message =& $vbulletin->GPC['message'];
    } 
in the line 3202 find
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/functions_wysiwyg.php');
        
$vbulletin->GPC['message'] = convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $vbulletin->options['allowhtml']);
    } 
change it for
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/class_wysiwygparser.php');
        
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
        
$message $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    } 
and thats all
Reply With Quote
Благодарность от:
woffie
  #205  
Old 08-06-2011, 12:06 PM
bjarne2 bjarne2 is offline
 
Join Date: Dec 2009
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can not see what these lines helps. There will be the same as before in the code. Yes it is newer link, but it does not help anything.....
Reply With Quote
  #206  
Old 08-06-2011, 12:19 PM
Gripi Gripi is offline
 
Join Date: Jul 2009
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no more update from the developer?

really love this addon
Reply With Quote
  #207  
Old 08-07-2011, 06:06 AM
bjarne2 bjarne2 is offline
 
Join Date: Dec 2009
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry Warlion - can see that the table will be formatted with the new code. I had more focus on images instead of a link and video instead of a link.
Reply With Quote
  #208  
Old 08-07-2011, 06:14 AM
WarLion's Avatar
WarLion WarLion is offline
 
Join Date: Jun 2006
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

im fixing too the images problems but the fist i find was the editor ;P

is been a while since my last mod and vb change so many from vb3 to vb4 lol
Reply With Quote
Благодарность от:
Jimandbob
  #209  
Old 08-07-2011, 07:26 AM
bjarne2 bjarne2 is offline
 
Join Date: Dec 2009
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can see the database that BB image tag is well saved. So it must be by reading it will be formatted incorrectly. The image should appear as it does in the Editor instead comes only link.
Reply With Quote
  #210  
Old 08-10-2011, 09:24 AM
woffie's Avatar
woffie woffie is offline
 
Join Date: Jan 2009
Location: Michigan
Posts: 264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WarLion View Post
fixed in the file vbyellowpages.php find in the line 881
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/functions_wysiwyg.php');
        
$message convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    }
    else
    {
        
$message =& $vbulletin->GPC['message'];
    } 
change for
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/class_wysiwygparser.php');
        
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
        
$message $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    }
    else
    {
        
$message =& $vbulletin->GPC['message'];
    } 
in the line 3202 find
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/functions_wysiwyg.php');
        
$vbulletin->GPC['message'] = convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $vbulletin->options['allowhtml']);
    } 
change it for
PHP Code:
    // convert WYSIWYG
    
if ($vbulletin->GPC['wysiwyg'])
    {
        require_once(
DIR '/includes/class_wysiwygparser.php');
        
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
        
$message $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']);
    } 
and thats all
Just tested this and it fixes the problem. Thanks!
Reply With Quote
  #211  
Old 08-27-2011, 06:07 AM
vb.help vb.help is offline
 
Join Date: Aug 2011
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am able to install install this in my forum but when a registered user adds an entry it gets displayed for everybody without waiting for moderator or admin to review... i got PM message though as an Admin .. please help
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:04 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07229 seconds
  • Memory Usage 2,407KB
  • Queries Executed 28 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete