51
tripmon
Re: Problems with install on GoDaddy
  • 2006/10/4 19:58

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


EDIT- posted twice for some reason...



52
tripmon
Re: Problems with install on GoDaddy
  • 2006/10/4 19:57

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


I would advise against using godaddy's automated install of anything... reason being is that the database is not accessible via the control panel for your site and can make things difficult if you run into any problems.

First make sure you are on a Linux server... manually create a database, download and unzip the latest XOOPS version from this site, then upload XOOPS to the server using an ftp client (filezilla is a good free ftp client)(again I don't use the godaddy file transfer program in the control panel).

Then just run setup. This way you will have access to all of the files & the database and can upgrade as new releases of XOOPS come out.



53
tripmon
Re: Manipulating a XOOPS page
  • 2006/10/2 14:39

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


Go to administration, then:
system admin=>Preferences=>General Settings

Up near the top you will see: MODULE FOR YOUR START PAGE..
Set that to whatever module you want and then set up your blocks.

hth,



54
tripmon
Re: contact module
  • 2006/9/27 14:55

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


looks nice.

you can enter administration : system admin=>templates=>contact us

and edit the contact_contactusform.html template.

hope that helps.



55
tripmon
Re: Blank Screen
  • 2006/9/27 0:21

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


lol, just watched it come up.



56
tripmon
Re: Blank Screen
  • 2006/9/27 0:15

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


put /user.php on the end and you can log in (I just checked). If that login comes up blank... AFTER you login change /user.php to /admin.php... should allow you to enter the admin section.

I would set the start module to none and turn on debug to find out what is hosing your index...

Well I would tell you more, but I think you just deleted the site as I was trying to see if there was any info on the blank page... BTW once you fix things, you may want to disable directory browsing on the server as well.



57
tripmon
Re: How to set forum so everyone can view but only moderator/admin can post/edit messages.
  • 2006/9/26 23:59

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


I recommend upgrading to CBB 3.05...

Upgrade should keep all your posts & forums intact. Read docs in root and back up your db first.



58
tripmon
Re: How to set forum so everyone can view but only moderator/admin can post/edit messages.
  • 2006/9/26 19:40

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


Look at the permissions tab in the admin area for new bb.... use the dropdown menu to choose what permissions you are assigning.



59
tripmon
Re: Install OK, no menu items, admin has blank screen
  • 2006/9/22 0:31

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


Hi,
There is no unique setting necessary for IIS re:mysql.

You do not need to verify an email or anything, so no worrys there.

Register Globals is now recommended off.

-----------------
Try this first....

Files integrity check

The full XOOPS package is now released with a script able to check if all the system files were correctly uploaded to the server. To use it, follow these instructions:

1. Upload the xoops_md5.php and xoops.md5 files located in the XOOPS package root to your XOOPS server folder (putting them next to mainfile.php).
2. Execute xoops_md5.php with your browser
3. If necessary, re-upload the missing or corrupted system files
4. Remove xoops_md5.php and xoops.md5 from your server

Revealing the blank page backtrace log

XOOPS displays a basic error page when a fatal error preventing it to run is encountered. To help you diagnose
the cause of the error, this page contains additional messages that are hidden by default. To reveal them, use
your browser "select all" function (for most browsers, you can use "Ctrl+A").
-----
Then post back with any additional information.



60
tripmon
Re: User info problem
  • 2006/9/18 20:28

  • tripmon

  • Module Developer

  • Posts: 462

  • Since: 2004/2/28


This is usually caused by a module using a search parameter that interferes with userinfo.php.

Try disabling (not removing) any modules you have added recently... once you find the offender you can decide what to do...

Of course there is another fix, but it will remove the 'posted' info on the userpages. Which means you will be able to see the users information, but not what they have posted to the site. If you go this route, you can likley leave the offending module running with no problems.

This can be remedied by commenting out the last section
of userinfo.php:

it's a cheesy fix, as it will cause userinfo.php to no
longer display the users latest posts, but it will fix a blank page.

All you are doing below is adding the opening and closing comment tags in the proper places... /* and */

find this code in user.php:

/* <=ADD THIS COMMENT ABOVE
$module_handler =& xoops_gethandler('module');
$criteria = new CriteriaCompo(new Criteria('hassearch',
1));
$criteria->add(new Criteria('isactive'1));
$mids =& array_keys($module_handler->getList($criteria));

foreach (
$mids as $mid) {
// Hack by marcan : only return results of modules
for which user has access permission
if ( $gperm_handler->checkRight('module_read'$mid,
$groups)) {
$module =& $module_handler->get($mid);
$results =& $module->search(''''50,
$thisUser->getVar('uid'));
$count count($results);
if (
is_array($results) && $count 0) {
for (
$i 0$i $count$i++) {
if (isset(
$results[$i]['image']) &&
$results[$i]['image'] != '') {
$results[$i]['image'] =
'modules/'.$module->getVar('dirname').'/'.$results[$i]['image'];
} else {
$results[$i]['image'] =
'images/icons/posticon2.gif';
}

if (!
preg_match("/^http[s]*:///i",
$results[$i]['link'])) {
$results[$i]['link'] =
"modules/".$module->getVar('dirname')."/".$results[$i]['link'];
}

$results[$i]['title'] =
$myts->makeTboxData4Show($results[$i]['title']);
$results[$i]['time'] = $results[$i]['time']
formatTimestamp($results[$i]['time']) : '';
}
if (
$count == 5) {
$showall_link '
href="search.php?action=showallbyuser&mid='
.$mid.'&uid='.$thisUser->getVar('uid').'">'._US_SHOWALL.'';
} else {
$showall_link '';
}
$xoopsTpl->append('modules', array('name' =>
$module->getVar('name'), 'results' => $results,
'showall_link' => $showall_link));
}
unset(
$module);
}
}

ADD THIS COMMENT BELOW => */

GL




TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 44 »



Login

Who's Online

150 user(s) are online (110 user(s) are browsing Support Forums)


Members: 0


Guests: 150


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