Author |
Message |
ironice
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Jan 08, 2006
Posts: 18
|
Posted:
Sun Jan 08, 2006 12:36 am |
|
just installed this at http://www.8lo.net/~tszlung
but after installation and going through the entire instructions....the page comes up with blank
all that is on the page is a "‹"
looking into the page source i see that at the top there is:
Code:‹<meta http-equiv="Content-Language" content="en-us">
|
which file contains this code? cuz the '‹' is most likely causing the loading problem here.
Thanks in advance! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
Site Admin/Owner
![](modules/Forums/images/avatars/45030c033f18773153cd2.gif)
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Sun Jan 08, 2006 1:13 am |
|
I just searched the entire distribution and that does not exist. My guess is that you either have a corrupted download or a bad ftp. Make sure that you are tramsferring all *.php files as binary. There is nothing wrong with the Distro. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 2:00 am |
|
ok, i'll reinstall everything and try again. thanks raven! i'll update you on the situation |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 3:20 am |
|
i made sure binary transfer was on, and uploaded the files one by one. it seems any file that requires_once mainfile.php will display that funny symbol ?
is there a problem in mainfile.php? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 3:29 am |
|
Nope. Have you edited any files? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 4:15 am |
|
nope, i redownloaded the package and uploaded them fresh
the only file i edited was config.php for the db settings
is it possible that my host's server has something to do with this ? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 4:19 am |
|
Well it's obvious that somethings going on. Is that funky character showing on your local PC before you upload or does it just appear after it's uploaded? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 4:44 am |
|
the character doesn't show up on my PC. i did a full system search. it only appears when i try to access the site. also, you know how in ur instructions it says that it should say:
Quote: |
There seems to be a problem with the $dbtype server - Sorry for the inconvenience.
Please report this to the Administrator ASAP.
We should be back shortly. |
before continuing installation?
that message doesn't show up either. its just the funny symbol: '‹'
i have no idea what is happening :S |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 4:50 am |
|
Try another ftp client. I recommend wsftp. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 3:48 pm |
|
hi raven,
i tried it with wsftp, but i get the same results. i don't know much about the page source, but you probably know how it is built. here's the page source with just that symbol selected, when i view index.php in a browser:
Quote: | <*body*>‹
<*scr*ipt*>
if (!document.layers)
document.write('<*div* id="divStayTopRight" style="position:absolute"*>')
<*/script*><*div id="divStayTopRight" style="position: absolute; right: 3px; top: 150px;"*>
<*layer id="divStayTopRight"*>
i put in the stars so the security won't go crazy about the html |
do you know what files build this source? cuz that funky symbol is at the beginning of the source...
thanks again raven! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 3:58 pm |
|
which part of your package uses gzip ? my host tells me they don't support gzip.
and a little note: my friend running windows 98 can see the full site installed and everything, but my other friends running winxp only see the Question Mark or funky symbol. any ideas?
thanks raven! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 6:34 pm |
|
This has been tested on many, many machines. I personally tested this on XP and Linux. If your does not support gzip then change hosts - seriously. gzip is only used on the sql installer, not on any files, at all. Try transferring your *.php files in ascii mode. What kind of OS and Web Server are you using? Trust me, the "funky" characters are due to something local. You might also try commenting out this code in mainfile.phpCode:if ($phpver >= '4.0.4pl1' && isset($_SERVER['HTTP_USER_AGENT']) && strstr($_SERVER['HTTP_USER_AGENT'],'compatible')) {
if (extension_loaded('zlib')) {
@ob_end_clean();
ob_start('ob_gzhandler');
}
} elseif ($phpver > '4.0' && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && !empty($_SERVER['HTTP_ACCEPT_ENCODING'])) {
if (strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {
if (extension_loaded('zlib')) {
$do_gzip_compress = true;
ob_start(array('ob_gzhandler',5));
ob_implicit_flush(0);
if (ereg("MSIE", $_SERVER['HTTP_USER_AGENT'])) {
header('Content-Encoding: gzip');
}
}
}
}
|
gzip transfer encoding is a function of your browser, not your host. Something is definitely amiss. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 10:35 pm |
|
THANKS RAVEN! the commenting of the code worked very nicely! Thanks! You are the best! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 11:24 pm |
|
Thanks for telling me that that worked. That implies that that logic does not work. It is suposed to query the browser for an encoding handshake to see if gzip is acceptable. The server then sends the html output to the browser based on the result. I may try rewriting that piece of code in the future and call on you for some testing. But, it's definitely low on the priority list right now, especially since we have a work-around! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ironice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 08, 2006 11:59 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
shiloh3
Hangin' Around
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Aug 12, 2006
Posts: 30
|
Posted:
Mon Aug 14, 2006 11:42 pm |
|
well your lucky you get a box you fixed
i am still trying toi get pass the connection |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
Site Admin
![](modules/Forums/images/avatars/0c0adf824792d6d341ef4.gif)
Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Tue Aug 15, 2006 5:47 am |
|
shiloh3, not sure what your issue is that you are having. If you cannot find a solution by searching the forums here, please post a NEW topic in the relevant forum with as much details as possible. AND, please do not post your issue more than once.
Thanks. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
arif2k
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Oct 07, 2006
Posts: 2
|
Posted:
Mon Oct 09, 2006 1:30 am |
|
i installed RavenNuke76(tm) Version 2.02.02 Released! but mail validtaion is not send please help |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
gazj
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/Animaniacs/Animaniacs_-_Brain.gif)
Joined: Apr 28, 2006
Posts: 152
Location: doncaster england
|
Posted:
Mon Oct 09, 2006 1:37 am |
|
have you set the url and email in preffernces to your details?
allso if any1 is using email clients like aol it classes the activate emails as spam and blocks them not sure what other email clients do this |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Oct 09, 2006 8:37 pm |
|
PHP-Nuke just uses that standard mail() function within PHP for most (all?) mail functions unless told otherwise (forums), therefore, you do need to make sure it really is not sending as apposed to the client or your target mail server classifying it as spam. Second, you need to find out from your host if/why the mail function is not working properly. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|