vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - vBulletin-Yellow Pages with advertising management (https://vborg.vbsupport.ru/showthread.php?t=256995)

crowshead 08-06-2011 01:28 AM

How do I change ownership?

Can I set it up to do that automatically?

WarLion 08-06-2011 09:26 AM

tag hoping will update for 4.1.x

WarLion 08-06-2011 09:45 AM

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

bjarne2 08-06-2011 12:06 PM

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.....

Gripi 08-06-2011 12:19 PM

no more update from the developer?

really love this addon

bjarne2 08-07-2011 06:06 AM

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.

WarLion 08-07-2011 06:14 AM

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

bjarne2 08-07-2011 07:26 AM

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.

woffie 08-10-2011 09:24 AM

Quote:

Originally Posted by WarLion (Post 2230025)
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!

vb.help 08-27-2011 06:07 AM

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

CJFactor 08-27-2011 08:53 AM

Does this work on 4.1.x / 4.1.5?

bjarne2 08-27-2011 12:05 PM

NO Not

vb.help 08-27-2011 04:06 PM

I have installed in 4.1.5 and it looks fine but couple of issues ...

I am not able to search for the added entries .... any idea ?

Vossi 09-10-2011 10:46 AM

Version for vB 4.1.5 has been added. For an update it's enough to just replace 'vbyellowpage.php' in forumroot.

BadgerDog 09-10-2011 10:57 AM

Quote:

Originally Posted by Vossi (Post 2244218)
Version for vB 4.1.5 has been added. For an update it's enough to just replace 'vbyellowpage.php' in forumroot.

If we install this version update, does it still work with 4.1.3?

Thanks .. :)

Regards,
Doug

Vossi 09-10-2011 04:25 PM

Quote:

Originally Posted by BadgerDog (Post 2244223)
If we install this version update, does it still work with 4.1.3?

Thanks .. :)

Regards,
Doug

No, it works with 4.1.5 only.

BadgerDog 09-10-2011 04:32 PM

Thanks for the heads up .. :)

Regards,
Doug

Pengzhu 09-10-2011 08:37 PM

If subcategory was set up, user still can submit post at it's parent category.
Sometimes, category is just category. If use post at it's parent category, whole yellow page
Will be messed up.

Pengzhu 09-11-2011 05:01 AM

two bugs:
if extra field enabled, and you have not set up any extra field, the following message occur

warning:invalid argument supplied for foreach() in [path]/vbyellowpage.php on line 1411

also, entry moderate feature is not working, there is phrase missing, sorry, i cannot see
exact phrase name, maybe it called entry_moderate phrase.

Cory Megitt 09-12-2011 05:40 PM

Is there a way to import data from a CSV or XLS file?
I have 450 entries to import and don't really want to do it all manually.

woffie 10-08-2011 12:24 PM

This is not working on 4.1.7

Quote:

Parse error: syntax error, unexpected T_STRING in /home/xxxxxx/public_html/xxxxxx/formtst/vbyellowpage.php on line 904
I check out that line and it is the following

Quote:

$dataman->setr('naaman->setr('description',$message);

Vossi 10-08-2011 02:15 PM

Make sure you use the correct version which is for vB4.1.5 and higher. Seems like you didnt update yet...

Lionel 10-08-2011 02:29 PM

Hi, with latest version on 4.1.7, search is not working

woffie 10-08-2011 04:38 PM

Quote:

Originally Posted by Vossi (Post 2254715)
Make sure you use the correct version which is for vB4.1.5 and higher. Seems like you didnt update yet...

Yep, that was it.

kfyonur 10-08-2011 05:55 PM

is it working on 4.1.7

kfyonur 10-09-2011 05:07 AM

why we couldn't use attachment service without thumbnail in entry ?

paulket 10-10-2011 04:56 PM

1 Attachment(s)
With the vbyellowpages102vb415.zip download I'm also getting:

Warning: Invalid argument supplied for foreach() in [path]/vbyellowpage.php on line 1411

When adding a new entry along with the text and field boxes being very misaligned as shown in the attached screen-shot. Any help in getting these things fixed would be appreciated greatly.

txsbmw 10-14-2011 01:39 PM

I just installed this and cannot add an entry I keep getting

The text that you have entered is too long (3778 characters). Please shorten it to 10 characters long.

The only setting that has a 10 in it is:
Minimum characters of entries

So I made that number 5000 and then I get this error:
The message you have entered is too short. Please lengthen your message to at least 5000 characters.

EDIT: Ok appears to happen because I had maximum characters of entries set to 0 to disable that. HOWEVER now when I submit an entry I get:

Fatal error: Call to undefined function convert_wysiwyg_html_to_bbcode() in /xxxxx/xxxx/xxxxxx/garagetalk/vbyellowpage.php on line 1362

JimL 10-14-2011 07:59 PM

When I update a premium listing I get this

Warning: implode() [function.implode]: Invalid arguments passed in [path]/vbyellowpage.php on line 3891

This is what it's complaining about
$add_5_data = implode(',', $vbulletin->GPC['add_5_data']);

If you don't choose an ad-space (or select no advertisements anywhere) it trows an error

any way to set "no advertisements anywhere" as checked default?

vb.help 11-06-2011 03:16 AM

Hi,

I have followed the steps for adding the cms widget but it is displaying following data.. am i doing anything wrong ? I do have a category with 2 listings


Quote:

BRANCHENBUCHWERBUNG - Premium-Zufallseintrag
Hier steht eine Werbefl?che f?r ihren Eintrag im Branchenbuch zur Verf?gung.
I did not understand the language as well :)

thanks

madkeen 11-13-2011 05:45 AM

Getting the following error, can anyone help me?


Code:

Database error in vBulletin 4.1.3:

Invalid SQL:
SELECT *
        FROM vbyellowpage_entry
        WHERE status = '1'
                AND add_5 = '1'
        ORDER BY RAND()
        LIMIT 1;

MySQL Error  : Got error 28 from storage engine
Error Number  : 1030
Request Date  : Sunday, November 13th 2011 @ 05:43:54 PM
Error Date    : Sunday, November 13th 2011 @ 05:43:54 PM
Script        : http://www.xxxxxx.com/vforum/index.php
Referrer      : http://www.xxxxxxx.com/vforum/index.php
IP Address    :
Username      :
Classname    : vB_Database
MySQL Version : 5.1.56


BadgerDog 12-03-2011 07:25 PM

Using vBulletin 4.1.3 ..

Had to uninstall this mod due to coding errors which have never been addressed ...

"Fatal error: Cannot redeclare fetch_table_dump_sql() (previously declared in /usr/www/apache/forum/includes/adminfunctions_vblinklist.php:119) in /usr/www/apache/forum/includes/adminfunctions_vbyellowpage.php on line 199"

Regards,
Doug

bada_bing 01-11-2012 05:51 PM

Does anyone know if this works on vb 4.19 ? Also has anyone gotton a widget for vbadvanced?

This looks like a great mod and would love to see progress on this one, has great potentual

Domenico 01-22-2012 01:52 PM

Hmmm I like this mod but it seems it is not supported anymore.
Is there another hack just like this one?

Naijasite 03-17-2012 08:05 PM

Please where do i have to set this set 0777 permission to the following directory:

Is it on the vbyellowpage/Backup/index.html ?? am trying to install it on www.naijafinder.com

Naijasite 03-17-2012 08:13 PM

I got this when installed on www.naijafinder.com
Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/vbyellowpage.php on line 884

Fatal error: require_once() [function.require]: Failed opening required '/home/felix/public_html/naijafinder.com/includes/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/felix/public_html/naijafinder.com/vbyellowpage.php on line 884

Sheeko 09-12-2012 04:57 PM

This product is NOT compatible with vB 4.2

Cla75 09-21-2012 08:49 AM

There is something similar?
thanks

dallibose 11-11-2012 03:16 PM

Didn't work on 4.0.3

The following dependencies were not met:
This product is not compatible with version 4.0.3 of vBulletin. (Compatible starting with 4.0.8 / Incompatible with 4.2.0 Alpha 1 and greater)

JhonDoz 12-14-2012 03:21 PM

didn't work in vb 4.2


All times are GMT. The time now is 03:16 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.01511 seconds
  • Memory Usage 1,853KB
  • 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)bbcode_code_printable
  • (8)bbcode_php_printable
  • (7)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