61
m0nty
Re: Web Crawler Question
  • 2006/11/8 3:21

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


cuidiu is correct, if your forum has no access for anonymous, the spiders can't see the info either.

spiders only crawl as a guest and adhere to all guest permissions then. cuidiu is also correct that you can inform google of a username & password for it's spider (googlebot) so that it can login. but i've never used that service.



62
m0nty
Re: Dudes. I'm Getting A New Phone.
  • 2006/11/8 3:14

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


Quote:

Cuidiu wrote:

Skype!


eh? i didn't know skype made cell phones.. lol

if they do i sure as hell want 1



63
m0nty
Re: Dudes. Im Getting A New Phone.
  • 2006/11/7 21:27

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


i have a motorola A1000 symbian..

love the pda style and easily updated software.



64
m0nty
Re: Turn it on again - The Tour
  • 2006/11/7 16:46

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


genesis? blimey, haven't heard them in years..

i'm gathering phil collins is back with them?



65
m0nty
Re: Can an SQL query be made from a popup window?
  • 2006/11/7 16:29

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


try

find in popup.php

$xoopsTpl = new XoopsTpl();


add right after:

global $xoopsUser;
if (
is_object($xoopsUser)
{
$is_user 1;
$xoopsTpl->assign('is_user'$is_user);


then near the end of file, find

$xoopsTpl->assign("maintheme"xoops_getcss($xoopsConfig['theme_set']));


add right Before:

}
else
{
$is_user 0;
$xoopsTpl->assign('is_user'$is_user);
$xoopsTpl->assign('need_login''You must be logged in to play radio');
}


then in the template debaser_radiopopup.html

find:

<table class="outer"><tr><td class="odd">


add right Before:

<{if $is_user !== 1}>


find

</td></tr></table>


add right After

<{else}>
<
div><{$need_login}></div>
<{/if}>


not tried it at all, but worth a try



66
m0nty
Re: HTTP_REFERRER problem - will it ever get fixed?
  • 2006/11/6 17:54

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


i would file another report with ebay, for feedback abuse and give them links to his given feedback.

also point them to this thread if need be for verification.

you should aswell return the favour and you can respond to his neg with your own reply, explaining it was his problem & not yours.



67
m0nty
Re: HTTP_REFERRER problem - will it ever get fixed?
  • 2006/11/6 17:36

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


why should you have to reduce the security of your website because some user blocks http headers when it's clearly stated in their firewalls or whatever that blocking http referrals can stop them accessing certain sites.

i would dispute the neg with ebay and that user.. who clearly doesn't understand wtf header referrals are used for or the implications it can have. ebay will probably find in your favour and remove the neg as it's clearly his computer and his settings that prevented him from viewing.



68
m0nty
Re: Two questions - cookies and xoops version
  • 2006/11/6 17:02

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


you can get a p3p policy editor here

also you can add a little script to the head tag & body of your theme.html

<script language="JavaScript">
<!--

/*
WM_setCookie(), WM_readCookie(), WM_killCookie()
A set of functions that eases the pain of using cookies.

Source: Webmonkey Code Library
(http://www.hotwired.com/webmonkey/javascript/code_library/)

Author: Nadav Savio
Author Email: nadav@wired.com
*/


// This next little bit of code tests whether the user accepts cookies.
var WM_acceptsCookies false;
if(
document.cookie == '') {
    
document.cookie 'WM_acceptsCookies=yes'// Try to set a cookie.
    
if(document.cookie.indexOf('WM_acceptsCookies=yes') != -1) {
    
WM_acceptsCookies true
    }
// If it succeeds, set variable
} else { // there was already a cookie
  
WM_acceptsCookies true;
}


function 
WM_setCookie (namevaluehourspathdomainsecure) {
    if (
WM_acceptsCookies) { // Don't waste your time if the browser doesn't accept cookies.
    
var not_NN2 = (navigator && navigator.appName 
               
&& (navigator.appName == 'Netscape'
               && 
navigator.appVersion 
               
&& (parseInt(navigator.appVersion) == 2))?false:true;

    if(
hours && not_NN2) { // NN2 cannot handle Dates, so skip this part
        
if ( (typeof(hours) == 'string') && Date.parse(hours) ) { // already a Date string
        
var numHours hours;
        } else if (
typeof(hours) == 'number') { // calculate Date from number of hours
        
var numHours = (new Date((new Date()).getTime() + hours*3600000)).toGMTString();
        }
    }
    
document.cookie name '=' escape(value) + ((numHours)?(';expires=' numHours):'') + ((path)?';path=' path:'') + ((domain)?';domain=' domain:'') + ((secure && (secure == true))?'; secure':''); // Set the cookie, adding any parameters that were specified.
    
}
// WM_setCookie


function WM_readCookie(name) {
    if(
document.cookie == '') { // there's no cookie, so go no further
    
return false
    } else { 
// there is a cookie
    
var firstCharlastChar;
    var 
theBigCookie document.cookie;
    
firstChar theBigCookie.indexOf(name);    // find the start of 'name'
    
var NN2Hack firstChar name.length;
    if((
firstChar != -1) && (theBigCookie.charAt(NN2Hack) == '=')) { // if you found the cookie
        
firstChar += name.length 1// skip 'name' and '='
        
lastChar theBigCookie.indexOf(';'firstChar); // Find the end of the value string (i.e. the next ';').
        
if(lastChar == -1lastChar theBigCookie.length;
        return 
unescape(theBigCookie.substring(firstCharlastChar));
    } else { 
// If there was no cookie of that name, return false.
        
return false;
    }
    }    
// WM_readCookie

function WM_killCookie(namepathdomain) {
  var 
theValue WM_readCookie(name); // We need the value to kill the cookie
  
if(theValue) {
      
document.cookie name '=' theValue '; expires=Fri, 13-Apr-1970 00:00:00 GMT' + ((path)?';path=' path:'') + ((domain)?';domain=' domain:''); // set an already-expired cookie
  
}
// WM_killCookie


// -->

</script>


then in the <body> tag you add

<script>
if (!
WM_acceptsCookies)
{
  
document.write("<p>your browser does NOT accept cookies, this website requires cookies to be enabled.</p>");
}
</
script>


you could also add a http link in the document.write above with instructions for enabling cookies.



69
m0nty
Re: Two questions - cookies and xoops version
  • 2006/11/6 16:47

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


no.. your site is legit.. there's noone who can say different..

cookies being blocked or http headers is 100% on the users responsibility for making sure they setup their browsers/firewalls correctly so that they can view/access the sites they want to.

if they don't want to accept cookies or they will not unblock headers then, they have no grounds to complain.. why should you reduce the security of your website for those that can't read the manual for their own software that they use. it physically states on browsers and firewalls the implications of blocking cookies and that some sites may not work.

2. goto admin and look in the footer..

or check includes/version.php



70
m0nty
Re: compressed data base?
  • 2006/11/6 15:57

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


no :P (i couldn't explain it better than the website does)

here's the website:http://www.ozerov.de/bigdump.php


phpmyadmin is pretty common tho but when in phpmyadmin export page, you can tick a box for save as file and then choose zip or tar (i think).

but bigdump is probably the best and most reliable as it can stagger the export/import to avoid php & MySQL timeouts etc..




TopTop
« 1 ... 4 5 6 (7) 8 9 10 ... 289 »



Login

Who's Online

149 user(s) are online (105 user(s) are browsing Support Forums)


Members: 0


Guests: 149


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