Jump to content

paul

Admin
  • Posts

    5611
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by paul

  1. paul

    sftp issues

    can you ssh? surely if you can't sftp, then you can't ssh ...
  2. paul

    sftp issues

    my guess would be X forwarding .... MDK has X forwarding turned on by default, gentoo does not.
  3. hey tvlad ... check this out ... its a HOWTO virtual users that I save from somewhere sometime ago http://loudas.com/coding.php?c=postfix_vir...ual_hosting.php
  4. send me a nice website template ;-) ... :-P the two I am working on are http://office.rentworld.co.nz http://loudas.com/golive/
  5. function over_image(parm_name) { document[parm_name].src = eval(parm_name + "_on.src"); document[parm_name].className="stoopid_ms2"; } function off_image(parm_name) { document[parm_name].src = eval(parm_name + "_off.src"); document[parm_name].className="stoopid_ms1"; } <a href="index.php" onmouseover="over_image('img0');" onmouseout="off_image('img0')"><img src="images/home.png" border="0" name="img0" alt="Home" class="stoopid_MS1"></a> I guess with something like this you would need to write a stlye class for each mouseover effect :-( like img.img0-1 { } and img.img0-2 {} etc etc etc
  6. got php? <? // usage: // put_png("path/to/my_transparent.png", width, height); function put_png($path2img, $width, $height) { global $HTTP_USER_AGENT; $suffix = "px"; // this is for style size ... example 10px if (ereg("MSIE", $HTTP_USER_AGENT) && ereg("Windows", $HTTP_USER_AGENT) && !ereg("Opera", $HTTP_USER_AGENT)) { echo"<div id="stoopid_MS" style="position:relative; height:$height$suffix; width:$width$suffix; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$path2img',sizingMethod='scale');"></div>"; } else { echo"<img src="$path2img" width="$width" height="$height">"; } } ?>
  7. I know its slow .. :-( ... I'm working on the speed issue I dont have any other web space ... and mub can't afford it :-( .. we're over our quota here already.
  8. dolson .... can you email (if you don' mind sharing) the tutorials etc for mdkxp .... ? I wouldn't mind putting them on http://loudas.com ... the have been very helpful to many people and it would be a shame toi lose them ... I have noticed the php bugs on your server, and was disappointed when I couldn't reach one of your tutorials
  9. I've used crossove (the gcc2.96 version ... so it no longer works :-( ) ... and it does work well..... BUT Life would still be better if we could have a office suite as easy to use as Microshaft Office, but run native in Linux ;-) ... And don't go mentioning that java based one :-P ... has anybody here tried hancom office?
  10. 8) got it !!!! ... the problem with Opera .. is it doesn't render xsl at all so after 3 days of searching ... it was right infront of me :roll: [paul@morpheus xml_trial]$ rpm -qa | grep xsl php-xslt-4.2.3-1mdk libxslt-proc-1.0.19-4mdk libxslt1-1.0.19-4mdk [paul@morpheus xml_trial]$ so now I have to do some thing like this <?php if(!$_GET ) { $page = "index.xml"; } if(eregi("opera",$_SERVER['HTTP_USER_AGENT'])) { system("xsltproc xml/layout.xsl ./".$page); } else { header("Location: ./$page"); } ?>
  11. he he :-) I still use screen all the time start a session at work... detach .. go home .. ssh .. re-attach ;-) I can have X compiling at work .. and check on the progress when I get home. if only there was a commandline mail client that I liked ..... I used mutt years ago ... which was good, but I stole somebody elses .muttrc now I can't remeber how I had it configured .. I had it opening attachments and everything!! :-(
  12. only coz you're a terminal FREAK ! damn so am i http://www.mandrakeusers.org/viewtopic.php...p?p=45869#45869 :blush:
  13. I'm working on a xml/xsl/dtd/css site which so far works and renders perfectly with mozilla 1.1+/IE 5.5+ what I want is for it to work with opera and other browsers as well. the only way I can think of is to preprocess the resulting code (which seems like a waste .. since xml/xsl is designed to remove the server side pre processing) What I thought is that I could do something like this <javascript> if(is_opera()) location.href('preprocess?thispage.xml) </javascript> I believe this is called an xml transformation engine ??? does that sound right? so has anybody seen anything that does this?
  14. paul

    opera 7.11 help

    ok all you opera users .. (cannonfodder??) I had opera 6 ... and middle click would open a link in a new tab (just like mozilla). now with opera 7.11 middle clock opens a new window, rather than opening a new tab. how do I change it? also how do I get rid of current mouse gestures, and create new ones?
  15. paul

    mkisofs issues

    dd if=/dev/scd0 of=./MandrakeUpdates.iso here's a copy of my local cdrecord help file mkisofs -v -v -V #name# -o /path/to/image.iso /path/to/tree cdrecord -v -dummy speed=24 dev=0,0,0 /path/to/image.iso replace #name# with the name for the cd
  16. I had endless problems with my mouse until I disable gpm ... then I never had a problem with the mouse in X ;-)
  17. a few notes: 1. you should never log on as root :shock: 1.a. you should open a terminal (konsole) as a user, then su - root rather than logging on directly as root 2. if kde is started automatically you will have auto logon turned on ... have a look in kcontrol, you can turn it off there, then it will not automatically log you on.
  18. you could use a shared /boot I would name my kernels accordingly /boot/bzImage-Mandrake9.1 /boot/bzImage-gentoo /boot/pauls_OS etc etc
  19. try this on AIX ... (I've never got it working under linux :-( ) cat /dev/mouse > /dev/dsp or cat /dev/psaux > /dev/dsp :-P
  20. <shameless plug for New Zealand> http://www.yoper.com </shameless plug for New Zealand>
  21. well just to add to the confusion: I have never had any luck with gentoo-sources. every time I've install them I've got kernel panics :-( I use vanilla-sources , and patch them myself
  22. urpmi php_ini should fix it
×
×
  • Create New...