292331
ronhab
New Hosting Provider Wanted
  • 2003/7/31 9:18

  • ronhab

  • Friend of XOOPS

  • Posts: 160

  • Since: 2003/4/27


EDIT: I have a new one now, but am on a month to month plan, so I can still listen to offers, but I have relocated at least for this month. If they are no better I will move again.

I am thorougly unhappy with my host Netfirms and am looking to move. I am seeking out recommendations on a quality hosting provider. Any and all recommendations welcome.

Any hosting provider that can _guarantee_ a reliable level of service can contact me at reliable57 AT yahoo DOT com. (EDIT: Changed the email addy as my mail is down).

Here's my current bandwidth usage this month to give you an idea what range of service I need. I am small but growing. Or I was before my provider ruined my site's rep with 2 straight days of horrible performance:

Total Bandwidth for Month: 3574.39 MB
Average Per Day: 115.30 MB



292332
DobePhat
Re: Forum Not Selected
  • 2003/7/30 23:31

  • DobePhat

  • Friend of XOOPS

  • Posts: 656

  • Since: 2003/4/15


No that did not work unfortunately...

But you know what...I just discovered som whacked out code...Im going to try getting it and maybe you can tell what the heck it is....

OK maybe I dont know nuthing, but what the heck is this!
and why is it in my common.php?

$HTTP_SESSION_VARS['xoopsUserTheme'] = $user_theme;
}

};
};
//ª®­¥æ å ª ­ ¯à¥¤¬¥â ¢â®«®£¨­
$xoopsUser = '';
$member_handler =& xoops_gethandler('member');


er..of course maybe thos strange character mean something?!
And if so please excuse my ignorance....



292333
mvandam
Re: Forum Not Selected
  • 2003/7/30 19:31

  • mvandam

  • Quite a regular

  • Posts: 253

  • Since: 2003/2/7 2


Just going out on a limb here... I don't really know anything about IIS, but from a quick google search it seems that IIS has 'SCRIPT_NAME' but not 'REQUEST_URI'. It looks like the XOOPS code should properly handle this. But if IIS is setting REQUEST_URI *incorrectly*, then this could be messing things up.

Could you guys try replacing (in include/common.php):

$xoopsRequestUri = @xoops_getenv('REQUEST_URI');

with

$xoopsRequestUri = @xoops_getenv('SCRIPT_NAME');

Please let me know if that works, and, if so, I'll try to find a more permanent way to integrate that into the XOOPS distribution.



292334
DobePhat
Re: Forum Not Selected
  • 2003/7/30 17:52

  • DobePhat

  • Friend of XOOPS

  • Posts: 656

  • Since: 2003/4/15


I also do not see any arguments...
IIS 4 (it hink), PHP 4.2, wn2K, XOOPS 2.0.3

Hmm, Ive hear about this URI thing before....(REQUEST_URI or SCRIPT_NAME )
this could be a mjor problem with my stuff...see because everything else works great, but a few strange quirky bugs through out. How can I discover more about this?

Thanks!

p.s I dontr seem to have other redirect problems so I was probably off on that one...



292335
schipper
Re: PHPrecipebook
  • 2003/7/30 10:39

  • schipper

  • Just popping in

  • Posts: 15

  • Since: 2002/6/5 7


Tried to download it. Download doesn't work. Anywhere else to go??



292336
jctsup1
Re: Forum Not Selected
  • 2003/7/30 4:13

  • jctsup1

  • Not too shy to talk

  • Posts: 146

  • Since: 2002/5/23


Quote:

mvandam wrote:
Immediately after logging in (and just prior to the error message), what is the URL in the browser? Is it something like yoursite.org/modules/newbb/viewtopic.php with no additional arguments?


Sorry its taken me so long to reply ---- been really busy.
That is exactly the problem - no arguments at all.

Quote:


One last thing: does your copy of moduels/newbb/viewtopic.php contain this line (near the top):

$forum = isset($HTTP_GET_VARS['forum']) ? intval($HTTP_GET_VARS['forum']) : 0;
[/quote]

Yes that line does appear. Some misc info --- running windows 2003 / IIS 6. This problem can be reproduced on IIS 4, 5, 5.1, and 6.



292337
LethZoid
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/7/30 0:30

  • LethZoid

  • Just popping in

  • Posts: 9

  • Since: 2003/7/8 1


how do I get to their again?



292338
Ashundar
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/7/29 22:32

  • Ashundar

  • Just popping in

  • Posts: 2

  • Since: 2003/7/29


Np fixed it, as i couldnt directly disable through the admin panel i just disabled this code in view_photo.php

// if (strcmp($gallery->album->fields["print_photos"],"none")) {
// if (strlen($adminCommands) > 0) {
// $adminCommands .="<br>";
// }
// $adminCommands .= "<a href=# onClick=\"document.sflyc4p.returl.value=document.location; document.sflyc4p.submit();return false\">[print this photo on Shutterfly]</a>";
// }



292339
Ashundar
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/7/29 21:41

  • Ashundar

  • Just popping in

  • Posts: 2

  • Since: 2003/7/29


is there any way to take out the print service? as the program our membersuse they cant actually sell anything unless they own a registered version of the software rarther the the shareware version any help would be greatly appreciated :)



292340
mvandam
Re: Forum Not Selected
  • 2003/7/29 20:38

  • mvandam

  • Quite a regular

  • Posts: 253

  • Since: 2003/2/7 2


It is possible, I suppose. Doubtful though. What browser are you using? XOOPS using the 'meta refresh' feature to automatically jump to the next page. If you are using a browser where this is not implemented correctly (e.g. strips off arguments from URL) then it could be the problem. But i'm not sure that any browsers have this problem.

The other problem could be in include/functions.php, function 'redirect_header'... There is a line where it determines the current page url for jumping back after login, for example. It uses $xoopsRequestUri, which is computed in include/common.php. If your server is not setting certain variables REQUEST_URI or SCRIPT_NAME properly then that may also be the issue. What is your webserver? If possible, is there any way to do some debugging with include/common.php and print/echo out the value of $xoopsRequestUri for a few example pages? This would be helpful to determine if that is the source of your problems.

Just out of curiosity, do you have problems with *other* redirects on the site... e.g. after posting a comment on something do you get redirected back to the proper location?







Login

Who's Online

145 user(s) are online (103 user(s) are browsing Support Forums)


Members: 0


Guests: 145


more...

Donat-O-Meter

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

Latest GitHub Commits