Posts

Showing posts from May, 2010

Cannot Upload

Image
i have problem uploading, when check tools there's no available ports while plugged in usb cable. also checked device manager , appears recognised other device. you need install drivers.  Arduino Forum > Using Arduino > Installation & Troubleshooting > Cannot Upload arduino

Guild Wars template - Joomla! Forum - community, help and support

first of all, being new forums , cms apologize if in wrong section 4:26 i'm writing , half asleep. my issue be, i've google on 50 pages , cannot seem come across free guild wars template. such design as: http://gw.portcraft.com/ or half decent perfect if knows of free template. i'm broke i'm moving new house, buying 1 designer not easy of right now. if there no themes, , kindly code one, suggestion guild wars players whom run guild websites, can tell them of such cms , template, , they'd interested i've installed various things such php-nuke them guild wars template, lovely joomla of help. thanks on matter. memnone couple hours work.... http://www.mobility-markets.co.uk/slut- ... 20wars.jpg though have no intention of coding right now, quite busy fixing clients site. quite happy actually.. alot better real content. Board index Joomla! Older Version Support Joomla! 1.5 Templates for Joomla! 1.5 ...

sim900 (n95dg) arduino mega ADK

hi i have brought arduino mega adk , sim900 gsm module maplin. i have tried example gsm_scanner test if module working. gsm module seems work fine network light flashing every often, module not communicating arduino board "gsm networks scanner" i have powered 12v power supply able supply 2 amps. the issue have, dont know connect serial i have bent pin 2 , connected pin pin 10 have read here:  https://www.arduino.cc/en/guide/gsmshieldleonardomega but has not worked me, i have set jumpers software serial , connected software serial pins mega adk pins 18,19 has not worked me. thank in advance if can help the thing stands out 12v supply. the maplin / linksprite gsm shield specifies 5v input. while cannot find exact schematic board , regulators there chance may have damaged it. also 12v maximum ideal should feed mega if intend that, 9v better onboard regulator not overheat. have checked psu giiving out true 12dc , many cheap wall plugs give out h...

Thread: ndiswrapper doesn't work in 9.10

i've upgraded 9.10 on laptop , wireless network doesn't work properly. tried starting troubleshooting guide ndiswrapper -l, installed ndiswrapper-common, , ndiswrapper complains ndiswrapper-utils-1.9 missing. can't install because system says it's been obsoleted , replaced ndiswrapper-common. line of testing isn't option on 9.10 but.. connection problems solved re-boot. coming out of hibernation, laptop connect, keep dropping , reconnecting , connection unworkably slow when connected. since version 8.10 never connected @ when laptop came out of hibernation i'm used having reboot, can live it. did hope wouldn't have restart laptop when home in evening can connect rest of home network. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] ndiswrapper doesn't work in 9.10 Ubuntu

HOW TO SEND HEX VALUE FROM PROCESSING TO ARDUINO THROUGH SERIAL

processing code code: [select] void setup() {   size(200, 200);   myport = new serial(this, "com6", 57600); }   void draw() {   fill(value,0,255);   rect(25, 25, 50, 50); }   void mouseclicked() {   if (value == 0) {     value = 255;     for(int i=0;i<=11;i++){       myport.write(collect[i]);     }   } else {     value = 0;   } } arduino code code: [select] #include <softwareserial.h> softwareserial myserial(2,3); void setup(){  serial.begin(57600);  myserial.begin(57600); }   void loop(){  while (serial.available()){   uint8_t byts=serial.read();   myserial.write(byts);  } } i got error iyyyy iyyyy iyyyy even if send single byte 0xef got 'i;' i checked different baud rates no improvement for viewing purpose using software serial , 2,3 pins connected cp2102 usb ttl different port(com3). arduino nano connected com6 upl...

Generator voltage regulator with arduino

hello, builded electricity generator lawn mower petrol engine , inductive ac single phase motor. in order maintan voltage must build device include 1.)switching circuit        explanation of case:    rotor of motor excited connecting capacitor parallel 0 , phase coming generator.    when put load generator voltage start drop, need connect capacitor to                                       maintain 240vac. example no load 5uf enough maintain 240vac, when 1000w of    load connected, 100uf cap needed in order maintain 240vac.     use more caps (5 maybe) 5uf (for no load), 4x 20uf (different number of 20uf must be    connected different loads).    what need:    i need device connect , disconnect caps individualy (via relays).    5uf capacitor connected time (so wire directly).   ...

Thread: SSH - public key not working

i trying connect 1 laptop pc. pc try connect is: ubuntu 9.10 64-bit laptop connect is: ubuntu 9.10 32-bit pc: /etc/ssh/sshd_config code: # package generated configuration file # see sshd(8) manpage details # ports, ips , protocols listen port 3434 # use these options restrict interfaces/protocols sshd bind #listenaddress :: #listenaddress 0.0.0.0 protocol 2 # hostkeys protocol version 2 hostkey /etc/ssh/ssh_host_rsa_key hostkey /etc/ssh/ssh_host_dsa_key #privilege separation turned on security useprivilegeseparation yes # lifetime , size of ephemeral version 1 server key keyregenerationinterval 3600 serverkeybits 768 # logging syslogfacility auth loglevel info # authentication: logingracetime 120 permitrootlogin no strictmodes yes rsaauthentication yes pubkeyauthentication yes authorizedkeysfile /home/marcin/.ssh/authorized_keys # don't read user's ~/.rhosts , ~/.shosts files ignorerhosts yes # work need host keys in /etc/ssh_known_hosts r...

Thread: Please Help Lost Audio / No Audio

i having issue 9.10. audio working yesterday, yet can't audio play via cd-video-mp3-or system audio... aplay -l (gives me output) conduit@conduit-laptop:~$ aplay -l **** list of playback hardware devices **** card 0: intel [hda intel], device 0: alc861 analog [alc861 analog] subdevices: 1/1 subdevice #0: subdevice #0 card 0: intel [hda intel], device 6: si3054 modem [si3054 modem] subdevices: 0/1 subdevice #0: subdevice #0 pulled alsamixer reason unable adjust master volume control. master volume not muted...although able adjust other input channels {pcm, line, cd, mic, beep,} master & front not able knowledge adjusted ... question : should reinstall alsamixer? reason can think it's not working had kill -9 rhythmbox locked on me. @ bit of loss on solution @ moment. received.. in advance i have had audio issues ubuntu quite sometime. fix do: code: ...

I keep getting "error compiling for board" and I don't know why .

hi i'm learning how interface arduino , android phone application arduino using hc - 06 bluetooth device. code below isn't mine, modified little bit error compiling when i'm trying verify code, meaning isn't board problem. seems right me problem serial library. can please? code: [select] #include <softwareserial.h> #include <spi.h> #include <wire.h> #include <adafruit_ssd1306.h> #define oled_reset 4 adafruit_ssd1306 display(oled_reset); softwareserial bt(10, 11); //tx, rx respetively string state;// string store incoming message bluetooth void setup() {  bt.begin(9600);// bluetooth serial communication happen on pin 10 , 11  serial.begin(9600); // serial communication check data on serial monitor  display.begin(ssd1306_switchcapvcc, 0x3c);  display.cleardisplay();  pinmode(13, output); // led connected 13th pin } void loop() {   while (bt.available()){  //check if there available byte read   delay(...

مشكلة في بداية التنصيب لجملة 1.0.15 - Joomla! Forum - community, help and support

السلام عليكم ورحمة الله وبركاته أنا حاولت أني نركب جملة الإصدار 1.0.15 وكيف بندير التثبيت طلع معاي الخطأ هذا : notice: variable references should returned reference in /home/**********r/public_html/main/libraries/joomla/factory.php on line 360 fatal error: call member function on non-object in /home/*********/public_html/main/libraries/joomla/i18n/language.php on line 735 أرجو المساعدة [rtl] tigerland ما هي جملة 1.0.15؟ ربما تقصد 1.5 مثلا علي كل حال ما هي مواصفات السيرفر يعني أباتشي ولا ويندوز؟ apache or windows? [/rtl] Board index Joomla! International Language Support International Zone Arabic Forum جوملا! 1.0 التثبيت

Joomla offline could not work - Joomla! Forum - community, help and support

i have installed wamp5 on laptop , installed joomla on when try access joomla offline ( http://localhost/joomla ) error message coming "the page cannot displayed" if connected internet works fine ...is there way can run , configure off line (with out internet connection). thank you a friend of main told me go internet explorer tools >internet option > connections > lan settings > choose "automatically detect settings"  working perfect ..i can configure joomla offline. kibrom Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

New features in Takriban(RC3) - Joomla! Forum - community, help and support

frenz, where can layman, find new features of joomla 1.5 rc3/takriban. did lil search not find. there should changelog.php file in rc3 download. the change log can viewed in svn: http://joomlacode.org/gf/project/joomla ... iew=markup more bug fixes , changes, rather new additions. release candidate after all. Board index Joomla! Older Version Support Joomla! 1.5 General Questions/New to Joomla! 1.5

Xbox Controller to Control Servo Motor

hi all, i'm trying control servo xbox controller using arduino. i got servo going 'sweep' example, trying control xbox controller. using code. code: [select] #include <servo.h> #include <wire.h> // include library communicating i2c devices #include <xboxrecv.h> // include xbox receiver library #ifdef dobogusinclude // satisfy ide, needs see include statement in ino #include <spi4teensy3.h> // satisfy ide, needs see include statement in ino #endif // satisfy ide, needs see include statement in ino usb usb; // define usb host shield xboxrecv xbox(&usb); // define xbox receiver , usb connection servo baseservo; servo servoarmheight; servo servoarmlength;    servo clawrotationservo; int baseservovalue; // define integer servo value int servoarmheightvalue; // define integer servo value int servoarmlengthvalue; // define integer servo value int clawrotationservovalue; // define integer servo value void setup() {   if (usb.init(...

Impove usability - Joomla! Forum - community, help and support

Image
firstly have of administrator fantastic. it's sex!  but think usability of should try improved, perhaps showing list of pages when log in (on main page) can go straight page want edit. another idea small preview of page appear when hover mouse on list of pages, on istock photography site (example: http://www.istockphoto.com/file_search.php?action=file&text=computer     i hope haven't been long winded... Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed Joomla! 1.5 Coding

Non c'e' verso di accedere al backend - Joomla! Forum - community, help and support

Image
mi succede una cosa strana... iscopitx mi ha defecato un paio di siti e quindi ho reinstallato... ho sovrascritto files, fatto un'installazione su un nuovo db e poi rimesso l'accesso al db vecchio. ho fatto la stessa cosa su un sito ed ha funzionato (anche se ovviamente poi ho dovuto prima disinstallare e poi reinstallare componenti e moduli aggiuntivi, insieme ai mambot, per pulire il db)... ma qui c'e' qualcosa che non va. il server è lo stesso. ora il sito funziona, dati ci sono, ma non capisco come mai non riesco accedere al backend. la password è giusta, perchè in frontend funziona, e anche se me la faccio rimandare comunque ho lo stesso effetto. frontend mi loggo, backend no. a cosa può essere dovuto? moderator note: moving italian forum (wild guess ). Board index Joomla! International Language Support International Zone Italian Forum

Thread: 9.10 with TeX Live 2009 and TeXmaker 1.9.2

hi, firstly, installed tex live 2009. after finishing, added code: path=/usr/local/texlive/2009/bin/i386-linux:\$path to .bashrc , system wide bash.bashrc. created .tex file gedit , compiled using terminal (after cd dir) with code: pdflatex foo.tex and worked fine. after installed texmaker 1.9.2 via synaptic. configuration shows standard parameters. strange thing, when compile .tex file using texmaker, editor works _does not_ use tex live 2009, instead .log file shows: code: this pdftexk, version 3.141592-1.40.3 (web2c 7.5.6) (format=pdflatex 2010.1.3) 3 jan 2010 08:44 entering extended mode %&-line parsing enabled. **testtex2.tex (./testtex2.tex latex2e <2005/12/01> […] why texmaker not using tex live 2009? has path config root user, because code: sudo env does not include path mentioned above? please excuse myself if not precise enough, quite new ubuntu in advance, christian ...

[SWmenuPro]Probleem met menu - Joomla! Forum - community, help and support

Image
hallo, ik heb nog maar net het component en ik heb al een probleempje ik heb een menu gemaakt en heb de module geplubiceerd. als ik nu naar mijn homepage ga zie ik de volgende fout: code: select all deprecated use of mambelfish. request url : http://www.jsdesign.info/index.php?option=com_content&id=39〈=nl&task=view&itemid=93 please contact author of component/module/mambot details in message. in meantime following function reference can commented out , translation should not affected. file : mod_swmenupro\functions.php line : 216 function : translate kan er iemand met mij dit probleem oplossen? alvast bedankt in meantime following function reference can commented out , translation should not affected. Board index Joomla! International Language Support International Zone Dutch Forum Joomla! 1.0 Modules 1.0.x

Conteggio avanti/indietro

ciao tutti, con due display 7 segmenti ,due 74hc595 e due pulsanti vorrei visualizzare un conteggio avanti /indietro da 0 99. per quanto riguarda il conteggio in avanti va tutto bene ,il problema è quando decremento. dal 9 allo 0 delle unita decrementa in modo corretto ma quando arriva sullo 0 mi aspetto che ritorni 9 e decrementi di 1 le decine ma questo non succede. ho scritto if (unita  ==  -  1) perchè penso che la variabile unita di tipo byte quando passa -1 non diventa negativa ma ritorna al valore impostato cioè 9. ho provato scrivere if (unita  ==  0) ma quando arriva 1 decrementa di 1 le decine e  non visualizza lo 0. grazie tutti in anticipo guido code: [select] //segmenti  a  b  c  d  e  f  g  dp // n°0      1  1  1  1  1  1  0  0    0xfc // n°1      0  1  1  0  0  0  0  0    0x6...

Thread: readability

Image
a nice feature bookmark: http://lab.arc90.com/experiments/readability/ i'm glad have 1024 x 768 on thinkpad, don't have (for want rid of annoying colored "empty space" line on thinkpad when switching resolution: disable hv expansion in bios.) Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe readability Ubuntu

help with Special parameters - Joomla! Forum - community, help and support

Image
hello guys i got big problem. wanna have flashbased gallerie on webpage. registered users should able access it, button gallerie should available in public mode also. now thought putting "fake" gallerie content message "you gotta logged on view pictures" can see when public. when youre logged in can see "real" gallery. ok, questions 1. how special access level works? 2. can put parameters in right box can view content when public not when registered? 3. alternatively know , nice looking galliere got function view pictures when logged in? thank dudes! nobody wannts me?  Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

Thread: Clicking sound when plugging in headphones and nothung playing

hi, getting weird clicking sound every 15 seconds or so, when plug in headphones , nothing playing. sound comes out of speakers (an hp dv2000). hear little click in headset not loud sound speakers. if unplug headphones, clicking sound goes away. if playing (movie, music, whatever) don't hear sound anymore. has else ever had this? if so, how fix it? i'm on karmic. thanks, l yeah, have same problem, karmic... i'm on hp v6000 series laptop... Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [ubuntu] Clicking sound when plugging in headphones and nothung playing Ubuntu

ช่วยแก้ Joomla FCK 2 ตัวใหม่ให้หน่อยครับ - Joomla! Forum - community, help and support

Image
มันมีปัญหาให้ช่วย 2 จุดครับ คืิอ 1.ตรงในการหาไฟล์ทั้งในหาไฟล์ภาพและลิ้ง เหมือนมันพ้องว่า config ไม่รู้จะแก้จุดไหนดี ดังรูป 2. ในส่วน insert link content... เหมือนกันว่ามันไม่ สนับสนุนภาษาไทย เลยกลายเป็นภาษาต่างดาวไป ดังรูป ช่วยหน่อยนะครับ ...ถ้าแก้ถือว่าดีครบตามที่ต้องการเลยนะครับ ช่วยด้วยนะครับ Board index Joomla! International Language Support International Zone Thai Forum

Images in collapsable left column - IE6 vs. IE7 & Firefox - Joomla! Forum - community, help and support

Image
hi all! i using "red flow" template joomla-templates.com.  had (ha!) achieved desired front page , had been checking site in both ie7 , firefox.  @ work today, checked in ie6 , there's huge problem (a couple actually, think can 1 of them). my temp site location is:  http://www.mysterylost.com/joomla/ the image on bottom left custom module placed in left collapsable column, , thing present there.  text in ie7 & firefox behaves should in center column - meaning right of image, , text appears on right part of image necessary - desired.  image becomes part of overall background. however, in ie6 image first, , text appears below image, on left.  given boatload of people still use ie6, of course, unacceptable.  and..is driving me crazy.  how can fix this?  if there way achieve same in joomla, i'm open it.  if it's matter of changing css file, i'm - whatever gets in ie7 across board.  should mention homepage 1 this, , wouldn't want change ...

Thread: Karmic and startup services.. How ?

in previous ubu's there had been menu entry, system > admin > services. 1 enable/ disable services boot @ startup (and not user specific), e.g vsftpd, ssh, etc in karmic menu gone... how enable services command? never had before, , couldnt find right answer yet.. can start services e.g. $ sudo /etc/init.d/vsftpd start headless home server, able setup services/ daemons run on boot , not... e.g how enable vsftpd , disable vsftpd on boot? system > preferences > startup applications Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [SOLVED] Karmic and startup services.. How ? Ubuntu

cannot find a way to fill in forms

i trying fill in scholarship applications off of high school website. have talked webmaster , says prepared adobe pro. using windows vista, have tried on machines using xp. have adobe reader 8.1.0 , have adobe 7.0 standard. should able fill in blanks on document using 1 of these application? here sample of trying work http://www.adrian.k12.mo.us/mfa%20foundation%20scholarship.pdf perhaps can tell me sure if fillable file or not. appreciated running out of time!! if not fillable form please tell me school can make there lot of parents in same predicament print form , fill out form. More discussions in Acrobat Reader adobe

accurate gyroscope logger

Image
hello, i'm new arduino , want make gyroscope logger can log accurate data fixed sample rate, , store in sd card csv or txt file. i have these module : arduino uno arduino nano mpu6050 arduino gy-85 sd card module my question is: 1. gyro module best project? (accurate , high speed) 2. how can fix gyro sample rate? (25 or 50 or 100 ,... highest possible) thanks  somthing this: http://www.biologging-solutions.com/en/products/6axis/ Arduino Forum > Using Arduino > Project Guidance > accurate gyroscope logger arduino

Seeking component in which articles can be posted sort of like a blog but... - Joomla! Forum - community, help and support

hello, hope i'm posting in right forum, i'm looking component in there categories set administrators , registered front-end users can choose category , post article in category, , other other users can comment on article, , should displayed in neat blog style layout, yet  have public option display articles date, category or all, , has search option. hi there great tutorial on subject here: http://www.compassdesigns.net/tutorials ... oomla.html some of want achieve done using joomla core functions , other parts using extension: > categories set administrators you use core joomla section / category process this > registered front-end users joomla core > can choose category , post article in category a joomla extension such mamblog, ja submit, myblog - go entries on extensions site > , other other users can comment on article there lots of comment systems - have under category on extensions site > displayed in neat blog style layout you make menu item of type blo...

Problem with acrobat reader

hi! i generating on fly pdf files java using itext. thsi files printed different places using different printers of them using windows-xp. the files pretty easy. no special chars, no graphics, nothing than text using 3 different fonts. sometimes -not always- characters printed incorrectly. more precisely format correct every characters printed plus one. that means if want print "hallo world" appears "ibmmp!xpqme". if want print 123 printed 234, and on. pdf version 1.4 any hint? thanks in advance. luis i have no idea problem. i having problem opening pdf files on web. when try open file error message says not using latest version of adobe, am. installed adobe reader 9. have deskpdf2.5. use able open these files. don't know happened. help! thanks in advance janet More discussions in Acrobat Reader adobe

I get error 1714 when I am trying to install 9.

i can download version 9 fine, when go install it, stops @ 99 percent , error 1714 older version of adobe reader 9 cannot be removed. have version 8 no 9 installed on computer. version 8 not work either. do? i forgot add using compaq presario pc windows xp i have tried downloading explorer , mozilla firefox. the way read pdf's download foxit reader after not install version 9. i miss adobe reader! betty More discussions in Acrobat Reader adobe

How can I convert MS Word to PDF (w/ hyperlinks and bookmarks)?

hello, i have 1000+ page ms word document i'm trying convert pdf. if in ms word select adobe pdf > convert adobe pdf system hangs. (i've let sit on 2.5 hours no progress.) i can print .prn file , distill file create pdf. however, when method, pdf comes through no hyperlinks , no bookmarks. there conversation settings method create hyperlinks/bookmarks? given size of pdf, hyperlinks/bookmarks extremely important. other ideas/tips appreciated. thanks, kara you may have repair on acrobat installation. if doesn't work, may want go in acrobat forum you're more help. 1 free reader. More discussions in Acrobat Reader adobe

Thread: Printer Help (HP Officejet J4540)

hey guys, posted in hardware 4 days ago , bumped yesterday. haven't gotten response thought post here see if help. hey guys , gals, having problem printer. it's skipping lines, suspect it's alignment problem. align cartridges, have print alignment page , put in scanner. when put in scanner, shows error doesn't recognize alignment page. it's couple of years old out of warranty. refill cartridges don't suspect that's problem although after refilling , replacing still low ink error ubuntu on desktop. if has replaced, can recommend replacement. need mfc printer/copier/fax/scanner, in advance advice. i try stay away printers as possible, have heard applications cause problems printing. have tried other apps print (evince, writer, firefox, etc.)? happen of those? alignment page actual hp 1 or "test page," has ubuntu stuff on it? ubuntu may printing non-standard alignment page...

Demonstrateme - Joomla! Forum - community, help and support

website url: http://www.demonstrateme.com template: bento box additional extensions (components, modules, plug ins): adsense, joomla explorer, fck editor custom development: none really, logo other features: none three (at least) specific areas of site i'd feedback on (design, code, graphics, etc.): user friendliness, overall look, functionality of site additional comments: my friend created site, , taught me how use joomla. never had experience websites before. critique full. in advance finally clean one, love it. simple navigate. great work Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed 1.0 x Site Showcase - Archived.

Thread: 1005HA eth0 problem apache images

Image
hello. yesterday buy asus 1005ha first thing made after unpacking box installing ubuntu 9.10 + apache2 + mysql server + php5 etc. testing: work normal, ... there issue i'm don't understand. have problem displaying images ( apache2 ) - there no way display in mozilla firefox. explorer show corupted images, this: when change laptop , install same ver. of ubuntu apache2, php, mysql - ewerything work normal .. please .. p>s sorry english .. anyone ? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] 1005HA eth0 problem apache images Ubuntu

jump from void loop() back to void setup() ?

although did fortran programming in 70's & 80's, i've been away , new c programming. want test condition running in void loop() , if condition not met, want jump void setup() things happen once, it's thing , drop void loop() again, etc. have been easy in fortran use go to, in c see discouraged, plus apparently in c goto jumps subsequent statement, not previous section. any suggestions? thanks. put code want able call again in function.  call setup.  call wherever want in loop.  can call setup loop, it's normal function.  if want reset board that's little more involved still not hard.  set watchdog timer , spin in empty while loop until times out , resets board.  Arduino Forum > Using Arduino > Programming Questions > jump from void loop() back to void setup() ? ard...

Problem on remote jump to NamedDestination in unicode PDF

hello, i'm writing application reads nameddest out of pdf file , gives opportunity view them opening document in acrobat reader , jumping named destination. this works good, if named destination defined unicode string, there documents doesn't work. first of all: tried use acrobat reader activex , possibility of running reader , remote control dde. works both same effect, not hope problem lies on communication. to check why doesn't work, made test pdfs. if there few named destinations within pdf (but unicode strings) works. added 100 named destinations , didn't work. i looked within text editor , there following change in '/dests' tag: working: ... <</dests 121 0 r>> endobj 121 0 obj <</names ... not working (with many named dests): <</dests 121 0 r>> endobj 121 0 obj <</kids[122 0 r 123 0 r]>> endobj 122 0 obj <</limits[...]/names ... it seems '/limits' tag or '/kids' tag not work acrobat rea...

Customize Virtuemart theme - Joomla! Forum - community, help and support

please refer me appropriate link or thread if answers these questions. i installed virtuemart module, in process of customizing look/feel meet customer's needs.  far i've messed modifying index.php , css/templates_css.css associated template using.  making slow progress. this working non virtuemart part of site, have customizations make virtuemart conform.  i've started off using/modifying rhuk_solarflare_ii template.  uploaded module, mod_contentitem, add , manage custom content columns.  works marvelously. virtuemart seems inherit of , feel standard stylesheet , classes.  see site at:     http://69.89.31.121/~youusedt/index.php and shop page at:     http://69.89.31.121/~youusedt/index.php ... &itemid=26 virtuemart inheriting button style of navigation menu breaks.  go virtuemart tell use custom class, override default?  show cart in cart column culprit.  want override font color in same column white. similar question...

Thread: mac-on-linux

i need help. need opinion on mac-on-linux. thank you. works fine on debian lenny tweak. sorry couldn't fine thread think original post on ppclinux.co.uk may on http://mac.linux.be/ found it http://ppclinux.co.uk/wiki/maclin/known_issue_matrix http://www.mail-archive.com/debian-p.../msg60060.html Forum The Ubuntu Forum Community Ubuntu Specialised Support Apple Hardware Users [ubuntu] mac-on-linux Ubuntu

Adobe Updater

hello, we have big problem regarding adobe updater comes adobe acrobat 9.1, relates our network connection. when adobe updater program runs on computer admin privileges, tries connect akamai.mel.pacific.net.au. updater cannot run on our network, , sits on persons taskbar, red x on icon. when click icon, says failed connect adobe updater. causes our internet slow down 30kb around 700kb(we have fibre 6/6mb connection). stay that, until cancel adobe updater program or restart computer. can see constant connection address in our checkpoint logs causing problem wondering if have heard before, can fix issue. im deleting adobe updater computer on network , looking block destination on checkpoint side, manager wants better solution, deleting adobe updater. thank you. david field you can set updater not updates. mike More discussions in Acrobat Reader adobe

Stepper Motor Driver Board overheating, wiring issue?

i have several stepper motors driver boards driving motor 3d printer nema 17 stepper motor 59ncm(84oz.in) 2a 17hs19-2004s http://www.omc-stepperonline.com/3d-printer-nema-17-stepper-motor-59ncm84ozin-2a-17hs192004s-p-18.html and board http://www.banggood.com/wholesale-dual-h-bridge-dc-stepper-motor-drive-controller-board-module-arduino-l298n-p-42826.html?rmmds=search i running basic stepper sketch (rotate 360 & reverse). the l298n getting crazy hot. runs 5 seconds gets little choppy , after 17 seconds motor stops. this has happened on 2 different driver boards (one drok , banggood). i have tried several motor connection combinations. motor either stutters (with little movement) or work gets l298 hot , shuts down within 10 seconds. i feeding 12v in. there no load on motor. what causing driver boards overheating? the motor? wiring combo? input voltage? is normal the  l298 chip hot, when motor idle? thoughts? see attached the l298 unsuitable stepper ...

Thread: Xampp sharing install with vista

just today got ubuntu 9.1 installed , ready start trying out more seriously. i'm web developer , have xampp installed in windows on seperate physical hard drive o/s drive , use same files htdocs. possible? need able have in same folder/drive , work in both windows ubuntu until comfortable , find program replacements use. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Xampp sharing install with vista Ubuntu

GetPlus boot up problem

whenever re-boot computer, message windows can't find file "c:\program files\nos\bin\getplus_helpersvc.exe". i have looked in windows explorer, , path/file not exist. i found registry entry causes attempt load, , eliminated it, keeps replacing it. any suggestions? in advance! try msconfig or startup inspector remove entry startup processes. More discussions in Acrobat Reader adobe

Thread: USB mouse works, Touchpad does not work

i using dell studio 15 laptop. using ubuntu 9.04 , touchpad , usb mouse both worked fine. ever since upgraded 9.10, have not been able use touchpad. usb mouse works fine. use windows 7 x64 via dual both on same laptop both touchpad , usb mouse work fine there. output of lshw command: code: description: portable computer product: studio 1535 vendor: dell inc. serial: jmrtvg1 width: 64 bits capabilities: smbios-2.4 dmi-2.4 vsyscall64 vsyscall32 configuration: boot=normal chassis=portable uuid=44454c4c-4d00-1052-8054-cac04f564731 *-core description: motherboard product: 0f700c vendor: dell inc. physical id: 0 serial: .jmrtvg1.cn4864388i0279. *-firmware description: bios vendor: dell inc. physical id: 0 version: a06 (12/04/2008) size: 64kib capacity: 1984kib capabilities: isa pci pcmcia pnp upgrade shadowing cdboot bootselec...