11
exbanious
Re: [XoopsTeam] phppp - Core Development - Leader
  • 2007/6/9 4:18

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


in spite of all the negativity going on around here lately, and the flack you have had to take as part of it, its good to see you still willing to take the lead. you have the support of so many, and myself.



12
exbanious
Re: [XoopsTeam] Dave_L - Core Development - Member
  • 2007/6/9 4:14

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


I've read many posts you've made that have helped me quite a bit. you have demonstrated great dedication to the project and i would like to see you help shape the future of xoops. you have my support...



13
exbanious
Re: URGENT protector error disabled entire site access
  • 2006/8/22 13:06

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


i think you should be able to get around protector if you temporarily comment out the precheck and postcheck references you had to add in mainfile.php

as far a the database.... i have no proposed solution aside from backups.



14
exbanious
Re: module for database management
  • 2006/8/9 14:04

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


There really isn't a module that i'm aware of that will do such a thing, You are better off with phpmyadmin
Someone created a module version of it a while back, but it was really just the application accessed through the admin side of xoops. I'm not sure if it was ever upgraded, so you might just wanna stick with the standard phpmyadmin latest version.
It will do what you want.



15
exbanious
Re: How to remove info fields for Profiles?
  • 2006/8/1 3:52

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


for the include/registerform.php

change:

$email_option->addOption(1_US_ALLOWVIEWEMAIL);


to:

$email_option->addOption(0_US_ALLOWVIEWEMAIL);



in edituser.php

make sure this line looks like this:

$sig_cbox_value $xoopsUser->getVar('attachsig') ? 1;



this should work. i was looking at code from a file that i had already done much editing to, so i forget what it was originally.



16
exbanious
Re: How to remove info fields for Profiles?
  • 2006/7/31 14:39

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


i had to do pretty much the sam ething on a site.
heres how you can get rid of the website and timezone fields in the registration form:

"include/registerform.php"

find this code:


$reg_form->addElement(new XoopsFormText(_US_WEBSITE"url"25255$url));
$tzselected = ($timezone_offset != "") ? $timezone_offset $xoopsConfig['default_TZ'];
$reg_form->addElement(new XoopsFormSelectTimezone(_US_TIMEZONE"timezone_offset"$tzselected));

change to

//$reg_form->addElement(new XoopsFormText(_US_WEBSITE, "url", 25, 255, $url));
$tzselected = ($timezone_offset != "") ? $timezone_offset $xoopsConfig['default_TZ'];
$reg_form->addElement(new XoopsFormHidden("timezone_offset"$tzselected));



in edituser.php, you can comment out the fields you do not want shown in the form.

find this text minus the // tags and add those tags.

like this:


    
//$form->addElement($url_text);

    //$timezone_select = new XoopsFormSelectTimezone(_US_TIMEZONE, 'timezone_offset', $xoopsUser->getVar('timezone_offset'));
    //$icq_text = new XoopsFormText(_US_ICQ, 'user_icq', 15, 15, $xoopsUser->getVar('user_icq', 'E'));
    //$aim_text = new XoopsFormText(_US_AIM, 'user_aim', 18, 18, $xoopsUser->getVar('user_aim', 'E'));
    //$yim_text = new XoopsFormText(_US_YIM, 'user_yim', 25, 25, $xoopsUser->getVar('user_yim', 'E'));
    //$msnm_text = new XoopsFormText(_US_MSNM, 'user_msnm', 30, 100, $xoopsUser->getVar('user_msnm', 'E'));
    //$location_text = new XoopsFormText(_US_LOCATION, 'user_from', 30, 100, $xoopsUser->getVar('user_from', 'E'));
    //$occupation_text = new XoopsFormText(_US_OCCUPATION, 'user_occ', 30, 100, $xoopsUser->getVar('user_occ', 'E'));



next you can delete some things off modules/system/templates/system_userinfo.html

delete this:

<tr>
          <
td class="head"><{$lang_website}></td>
          <
td class="even"><{$user_websiteurl}></td>
        </
tr>
        <
tr valign="top">
          <
td class="head"><{$lang_location}></td>
          <
td class="even"><{$user_location}></td>
        </
tr>
        <
tr valign="top">
          <
td class="head"><{$lang_occupation}></td>
          <
td class="odd"><{$user_occupation}></td>
        </
tr>


now update your system module, and you shoudl be alright.
make sure you make backups of those three files before you do anything, just incase this doesn't work correctly for some reason.



17
exbanious
Re: Email Validation Message on SalsaDetroit.com
  • 2006/7/28 20:38

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


/language/english/mail_template/activated.tpl

all of the mail templates are in there also.



18
exbanious
Re: Nominate XOOPS for CMS Award '06
  • 2006/7/24 16:41

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


done



19
exbanious
Re: Anyone with GoDaddy?
  • 2006/7/21 3:34

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


I've been using godaddy for a few months and haven't noticed any problems. XOOPS installs fine.
they use a version of phpmyadmin for MySQL administration.
just upload XOOPS through an ftp client and it install as usual. i think their using PHP 4.3.11 and MySQL 4.0.24.



20
exbanious
Forms and time select
  • 2006/4/23 4:28

  • exbanious

  • Not too shy to talk

  • Posts: 113

  • Since: 2004/5/30


I was curious if anyone knows of a way to alter "XoopsFormDateTime" to display a twelve 12 hour format, instead of the 24 hour w/15 minute intervals?




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



Login

Who's Online

155 user(s) are online (86 user(s) are browsing Support Forums)


Members: 0


Guests: 155


more...

Donat-O-Meter

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

Latest GitHub Commits