41
Cavan
Re: Formulaire image upload problems
  • 2005/5/24 5:33

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


animas,

Thank you...I uninstalled the old Formulaire (as per the install instructions) and installed the new one from the link you provided and it works great now!

Thanks again!




42
Cavan
Re: Formulaire image upload problems
  • 2005/5/24 2:13

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


Okay, I managed to fix this but there's a strange issue with the way the recorded form information is displayed in both the admin backend AND the table "form_form"...When the information from the form is recorded to the database, its jumbled and doesn't display the fields as they're ordered in the form. I need HELP with this SOON. please...Anyone out there?



43
Cavan
Formulaire image upload problems
  • 2005/5/23 17:43

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


I'd been using the Liaise module but switched to the Formulaire module because it allows image upload within a form. However, I can't seem to upload any images and constantly get the message that the file is too large, even though I have the file size set very high. The permission setting on the upload folder is correct (777) so this doesn't appear to be the problem.

Does anyone have any similar issues or can someone using this module help me out with this?



44
Cavan
PM Hacks...
  • 2005/5/11 15:02

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


I'm looking for help with two specific hacks I could really use for the PM feature in XOOPS:

1. Notify (by pop-up or possibly text output) users of new pms after they log in.

2. Ability to send pms to multiple users, or all users.

Is anyone using these hacks? Are they even available? I've seen the thread on the "Wani PM Hack" but this is a bit much for our site and isn't quite what we need...Can someone point me in the right direction here?



45
Cavan
Can't assign special ranks...
  • 2005/5/5 15:41

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


I have only four user ranks set-up for forum use---"special ranks" is set to "off" for these ranks; however, I have an additional five special ranks set-up---"special ranks" is set to "on" for these. I cannot change the user rank setting for anyone and I constantly get this message:

"Sorry, the new passwords do not match. Click back and try again."

I have no idea what this message has to do with changing a user's rank; but more importantly, I can't change a user's 'regular' rank to a special rank.

What am I doing wrong here?



46
Cavan
Re: Send PM hack from newbb not working...FIXED
  • 2005/4/18 5:48

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


Missed the space between the words java and script:

java script (should be javascript)

All better now...what a handy hack to have for newbb. Thank you!



47
Cavan
Re: IP display hack
  • 2005/4/18 3:25

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


This hack isn't working for me as well and I have GD Library enabled via my webhost...I still see nothing but a red x box...anyone got this working?

EDIT: Missed the error in the .php wording that's listed; one says "ipdisplay.php" and the other "ip_image.php". Fixed it and it works fine now. Thank you!



48
Cavan
Send PM hack from newbb not working...
  • 2005/4/18 3:11

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


I found this hack and tried to add it to the newbb_thread.html but it doesn't work, even with updating the module:

<a href="java script:openWithSelfMain('<{$xoops_url}>/pmlite.php?send2=1&to_userid=<{$topic_post.poster_uid}>', 'pmlite', 450, 380);"><img src="<{$xoops_url}>/images/icons/sendpm.gif" alt="<{$topic_post.poster_sendpmtext}>" /></a>


This is how it looks in the template:
<{elseif $viewer_can_post == true}>

          <
td class="even" align="right">
          <
a href="java script:openWithSelfMain('<{$xoops_url}>/pmlite.php?send2=1&to_userid=<{$topic_post.poster_uid}>', 'pmlite', 450, 380);"><img src="<{$xoops_url}>/images/icons/sendpm.gif" alt="<{$topic_post.poster_sendpmtext}>" /></a>
            <
a href='reply.php?forum=<{$forum_id}>&post_id=<{$topic_post.post_id}>&topic_id=<{$topic_id}>&viewmode=<{$topic_viewmode}>&order=<{$topic_order}>'><img src="<{$xoops_url}>/images/icons/reply.gif" alt="<{$lang_reply}>" /></a>
          </
td>

Anyone using this hack? Does someone know how to get it working?



49
Cavan
Re: Posts disappeared from newbb!!!---FIXED
  • 2005/4/16 22:07

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


Okay, sorry for the over-reaction---I misunderstood the "drop off after 100 days" bit (I thought this meant they were dropped from the database) and I managed to get the sorting feature back and working (it wasn't functioning on my end) so that all posts appear on the site. Now, where do I change the settings for these sorting details? Can they be changed?

Edit: Found it in modules/newbb/viewforum.php, around lines 153-164 (fixes are shown in red:
// assign to template
$xoopsTpl->assign('forum_selection_order'$forum_selection_order);

$sortsince = !empty($HTTP_GET_VARS['sortsince']) ? intval($HTTP_GET_VARS['sortsince']) : 365; [color=FF0000]<---CHANGED THIS DEFAULT DISPLAY FROM 100 to 365[/color]
$sel_since_array = array(13714306090180); [color=FF0000]<---CHANGED THESE TO SUIT OUR SITE[/color]
$forum_selection_since '<select name="sortsince">';
foreach (
$sel_since_array as $sort_since_v) {
    
$forum_selection_since .= '<option value="'.$sort_since_v.'"'.(($sortsince == $sort_since_v) ? ' selected="selected"' '').'>'.sprintf(_MD_FROMLASTDAYS,$sort_since_v).'</option>';
}
$forum_selection_since .= '<option value="365"'.(($sortsince == 365) ? ' selected="selected"' '').'>'.sprintf(_MD_THELASTYEAR,365).'</option>';
$forum_selection_since .= '<option value="1000"'.(($sortsince == 1000) ? ' selected="selected"' '').'>'.sprintf(_MD_BEGINNING,1000).'</option>';
$forum_selection_since .= '</select>';


A big thank you to everyone who pointed me in the right direction here. Please excue my over-reaction to the situation but seriously, this really threw me when it happened...all's well. Thanks again.



50
Cavan
Re: Posts disappeared from newbb!!!
  • 2005/4/16 21:45

  • Cavan

  • Friend of XOOPS

  • Posts: 218

  • Since: 2004/11/28


Okay, silly me for actially missing that but that's a SORTING ISSUE and it certainly doesn't make the missing posts magically reappear---remember, our site's only been live for two weeks, so WHY AREN'T THESE POSTS APPEARING ON THE SITE? The text is in the database, so where are the posts?





TopTop
« 1 2 3 4 (5) 6 7 8 ... 21 »



Login

Who's Online

176 user(s) are online (134 user(s) are browsing Support Forums)


Members: 0


Guests: 176


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits