vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - vBMS : vBulletin Mail System (https://vborg.vbsupport.ru/showthread.php?t=140828)

meissenation 08-05-2007 08:27 PM

Quote:

Originally Posted by Kingzor (Post 1305024)
It seems to be a problem with your mail server(not the websites mail server but the one used by thunderbird),not processing attachments correctly. Also thats rather strange the way the [img] tag is not being displayed correctly....
Try this fix I whipped up:
vbms_read.php
Line 85ish
PHP Code:

$message['message'] = convert_url_to_bbcode($message['message']); 

Replace it with
PHP Code:

require_once(DIR "/includes/functions_wysiwyg.php")
$message['message'] = convert_wysiwyg_html_to_bbcode($message['message']); 

That should convert any <img> tags in the message into correct [img] tags.

Oh and that empty slot is for when a message does have an attachment, a small paperclip image will be there.

Unfortunately it still parses the smiley face before the image, and it also got rid of the carriage returns / breaks / "<BR>'s"

JHC 08-11-2007 03:45 PM

I inadvertently uninstalled vbms. I love it & want it back. But, when I try to reinstall it, vbms does not show up in my admincp even though it says installation was completed. Please help, I love this mod.

JHC 08-13-2007 12:52 PM

Quote:

Originally Posted by JHC (Post 1315240)
I inadvertently uninstalled vbms. I love it & want it back. But, when I try to reinstall it, vbms does not show up in my admincp even though it says installation was completed. Please help, I love this mod.

Anyone have any suggestions with this issue? I'm stumped and can't get it to reinstall.

basketmen 08-17-2007 11:46 AM

Quote:

Originally Posted by niteslave (Post 1297702)
Can anyone tell me why the installer seems to start at 7% and does not progress after that. I have checked use vebose output and I have checked with my web hosts and they confirm imap is in use. I have read most of the postings here and seems the question has been asked many times but not answered. If you need to take a look let me know.
thanks

yeah same as me

i had try anything i found in this thread but still 7%

i cant installing this, i have access to php.ini but i cant restart the server

raiderlax 08-18-2007 03:24 AM

Are their any plans of an updated version or it being taken out of beta?

Thanks

basketmen 08-18-2007 04:08 PM

i still can not receive any email to vbms, but i can send email

if i am miss some thing let me know the link to repair it, this instruction is not usefull


catch all email is correct, i can see cronjob in Checking Logs too and there are some Logs marked, but how to repair it

Quote:

I can connect to the server just fine, but it won't get any email!
Check the "Mail checking logs" in your ACP (under the vBulletin Mail System area). If there are no logs, then the cronjob probably isn't running. If there are logs, see if there are any errors in there. If it's checking the mail account fine and simply says there are no messages, check with a webmail to see if the catch-all account is even receiving mails. If the webmail shows that the account has mail stuck in it and vBMS isn't picking them up, but vBMS is saying it's checking the account alright and finding 0 messages, then you're likely connecting to the wrong account. By doing these steps, you should at least be able to figure out where the problem is occurring.

blogtorank 08-18-2007 05:49 PM

Great hack works as noted!

mackers8923 08-18-2007 07:42 PM

I have tested, install took a while and currently I'm getting an error in the logs:

PHP error: readfile(/home/******/public_html/******//images/clear_dot.gif) [<a href='function.readfile'>function.readfile</a>]: failed to open stream: No such file or directory (/home/*********/public_html/******/vbms_checkmail.php:805)

Also I have 5 users testing this for me and they report that sending mail to a number of domains is failing. To be specific MSN and BT

basketmen 08-23-2007 10:01 PM

This tutorial is how to disable alias so user no need to set they alias from beggining. so make the email address = username@yourdomain.com


this is from here that i make more perfect since i dont find someone that cant help me about this, if you can make this more perfect let us know too



1. go to admincp --> Permissions --> set Change alias to No to all usergroups



2. go to admincp --> Add New Plugin -->

Product = vbulletin mail system 3.0
Hook Location = global_start
Title = VBMS Add-Alias


Plugin PHP Code =


Quote:

$count = 1;
function str_split_php4($text, $split = 1)
{
if (!is_string($text)) return false;
if (!is_numeric($split) && $split < 1) return false;
$len = strlen($text);
$array = array();
$i = 0;
while ($i < $len)
{
$key = NULL;
for ($j = 0; $j < $split; $j += 1)
{
$key .= $text{$i};
$i += 1;
}
$array[] = $key;
}
return $array;
}

function make_alias($username)
{
$alias = strtolower($username);
$alias = str_replace(" ", "_", $alias);
$holdarr = str_split_php4($alias);
foreach ($holdarr as $val) {
if ((ord($val) >= 48 AND ord($val) <= 57) OR (ord($val) >= 45 AND ord($val) <= 46) OR (ord($val) == 95) OR (ord($val) >=97 AND ord($val) <=122)) $final .= $val;
}
return $final;
}

$newalias = make_alias($vbulletin->userinfo['username']);

$fixedalias = $newalias;

$aliascheck = $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE vbms_alias ='" . $newalias . "'");

$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user
SET vbms_alias = '" . $fixedalias . "'
WHERE userid = '" . $vbulletin->userinfo['userid'] . "'
");

Konstantinos 08-24-2007 04:36 PM

Quote:

Originally Posted by Killsparer (Post 1258391)
I am more than willing to donate for this addon, but for that there has to exist a version which is more or less bug-free. And i currently seem to be cursed, because once i donated or paid for a (beta-)script or hack, the devolopment of it suddenly stops.

But once something is up and running at my board, i always donate for it. Yes, really!

happens to me as well. when flood check is on after the member sends 1 email he cant send another being told he has to send 1 per minute although 1 min has already passed.


All times are GMT. The time now is 02:23 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.01507 seconds
  • Memory Usage 1,756KB
  • 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_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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