901
zyspec
Re: Content module not returning in searches
  • 2006/7/15 14:44

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


You can change lines 42-44 in /include/search.inc.php from:

if ( $userid != ) {
  
$sql .= " AND storyid='0' ";
}


to:

//if ( $userid != 0 ) {
//  $sql .= " AND storyid='0' ";
//}


- that should fix the problem.



902
zyspec
Re: Security concerns with Unix permissions
  • 2006/7/9 4:43

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


I'd recommend you also look at using the Protector Module. One of the things included are instructions for moving the dB username/password out of mainfile and into a secure area.



903
zyspec
Re: New Install went ok - but unable to access index or admin
  • 2006/7/7 11:50

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Can you explain the exact steps you went through to "install" the system?

Uncompress the .zip or .tgz file on your local machine. Then follow the "key" steps from the release_notes.txt file

Quote:
1. Copy the content of the htdocs/ folder where it can be accessed by your server
2. Ensure mainfile.php, cache, templates_c and uploads are writable by the webserver
3. Access the folder where you installed the htdocs/ files using your web browser to launch the installation wizard.


The other thing you can try is go into your database (using something like phpMyAdmin) and verify the XOOPS tables are there.



904
zyspec
Re: Need DNS help with Xoops
  • 2006/7/6 20:45

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


C1Team,

I believe your XOOPS_URL should just be:
define('XOOPS_URL', 'http://www.adrenaline-gaming.net');

You don't need the additional subdirectory information since you've installed XOOPS in the root ofhttp://www.adrenaline-gaming.net



905
zyspec
Re: Need DNS help with Xoops
  • 2006/7/6 20:24

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


C1Team,

The first define is for a path, not a URL. You've defined a URL there so the system doesn't know how to find your "directory" (path).

Currently you have it set to define('XOOPS_ROOT_PATH', 'http://www.adrenaline-gaming.net/~teamadre/main');

It should be something like:
define('XOOPS_ROOT_PATH', '/home/your_user_name/public_html');
if you're on a Unix/Linux server



906
zyspec
Re: MyAds 2.x vulnerable!
  • 2006/7/6 2:34

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


sailjapan,

The code you've shown above from your version is good enough to stop the SQL Injection vulnerability. You do not need to change anything in that code.



907
zyspec
Re: Classic Old Time Radio Downloads
  • 2006/7/5 18:55

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


The "Tell a Friend" text is there, it's just the same color as background (#000000). If you put the cursor over it you can see the <a hover> attribute "kick in" (red).

Overall it looks very nice (IE6). The javascript box that pops up when you put the cursor over the debaser block (right side, titled "Audio/Video") shows as a blank, gray box. I assume there's suppose to be a picture or text in the box.

There's also a small typo "biogragpies" in the OTR Shop (http://otr-board.com/modules/cjaycontent/) summary for Books.



908
zyspec
Re: PopnupBLOG v. 2.21 Issues
  • 2006/7/3 2:32

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


You might try the Developer's Website here - there's some online documentation that may help you.



909
zyspec
Re: MyAds 2.x vulnerable!
  • 2006/7/2 2:50

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


The patch to fix the specific SQL injection cited is pretty easy to make. Does someone have a copy of the "latest" MyAds module (whatever version that is)? If so I can tell you exactly what line number. Otherwise you can follow the instructions below.

Towards the bottom of the listing-p-f.php (or annonces-p-f.php depending on which version of MyAds you have) file you'll find the following code just before:

switch($op) {

You'll find:
foreach ($_POST as $k => $v) {
    ${
$k} = $v;
}

$lid = isset( $_GET['lid'] ) ? $_GET['lid'] : '' ;

if(!isset(
$_POST['op']) && isset($_GET['op']) ) {
    
$op $_GET['op'] ;
}


Just delete these lines or comment it out with // at the beginning of each line) and replace it with:

$lid = isset( $_GET['lid'] ) ? intval($_GET['lid']) : '' ;
$op = isset($_POST['op']) ? $_POST['op'] : '' ;
$op = isset($_GET['op']) ? $_GET['op'] : $op ;

$yname = isset($_POST['yname'] ? $myts->addSlashes($_POST['yname']) : '';
$ymail = isset($_POST['ymail'] ? $myts->addSlashes($_POST['ymail']) : '';
$fname = isset($_POST['fname'] ? $myts->addSlashes($_POST['fname']) : '';
$fmail = isset($_POST['fmail'] ? $myts->addSlashes($_POST['fmail']) : '';

Remember, place this BEFORE the switch($op) statement. By the way, the fix for the Job Listing module (jobs ver 1.9) is the same.



910
zyspec
Re: MyAds 2.x vulnerable!
  • 2006/7/2 0:21

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Bender, et al

I just looked at the source for the Japanese developed version (2.05 jp) and the specific problem identified has been fixed in this version.




TopTop
« 1 ... 88 89 90 (91) 92 93 94 ... 100 »



Login

Who's Online

135 user(s) are online (80 user(s) are browsing Support Forums)


Members: 0


Guests: 135


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