Posts

Showing posts from May, 2011

disallow direct url access to a registered user document - Joomla! Forum - community, help and support

i aware question has sort of been answered before suggestion of using docman hoping simpler solution. i have series of static pages set registered in joomla admin have links both word , pdf documents on these pages located in images/doc/#### folder. i want registered users able access these files download. not want files downloaded via direct url - i.e htttp://www.mysite.com/images/doc/# ##/word/nameoffile.doc non registered user might have been given correct url. i know docman suitable - on complecated needs , if protect folder direct access non registred users do. i suppose password protect relevant folder using .htaccess , place documents want registred users access in it. means registered user have enter 2 passwords - 1 login joomla , 1 static password access registered files download. is there simpler solution problem other having install docman? perhaps there way of protecting contents of folder direct request allowing contents of folder downloaded via direct click regsitered use

It works locally....

this first attempt coldfusion , flex 2 talk each other. it's based off of "hello world" example, created query populate datagrid. works real pretty on local machine, when upload server (a shared server cf 7.0.2 running on it) following error: "faultcode:server.processing faultstring:'coldfusion.server.runtimeservice.isenabledflashremoting()z' faultdetail:'null'" does make sense why it's not working? missing something? i? thanks, al it sounds wrong coldfusion server installation. check cf log files, particularly exception.log, , see if there more information going wrong. More discussions in LiveCycle Data Services adobe

[SOLVED] - Please put JUserHelper::getUserName() back - Joomla! Forum - community, help and support

hi. i saw in svn juserhelper::getusername() removed. before function did excists had created same function, had load file each time. so question: can put function back? it makes easier develop extensions , lot of extensions have profit function. hope hear soon  ;) ps. here code in case lost it code: select all    /**     * returns username if userid exists     *     * @param string userid search on     * @return int user name or null if not found     */    function getusername($uid)    {       // initialize variables       $db = & jfactory::getdbo();       $query = 'select username #__users id = ' . $db->quote( $uid );       $db->setquery($query, 0, 1);       return $db->loadresult();    } why want have back? use $user = jfactory::getuser(); $user->get('username'); instead, Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived

deleted image subfolders now editor dropdown list is sticky - Joomla! Forum - community, help and support

Image
i tidying image folders , deleted folders within cpannel have found image editor drop down list in joomla template editor of image subfolders stuck on old list of folders, tried opening new content field , navigated new subfolder drop down list , selected new files when when re-edit new subfolder gets stuck on old subfiolder list dosen't exist more. i realy stuck, feel way out of situation me start again. creating new database , installing files again (days days of work). has got ideas of how re freash sub menu. please  have tried using cpanel re-create old folder?  give @ , maybe it'll unlock Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

"List Length" as user preference - Joomla! Forum - community, help and support

Image
within global configuration there option list length. feel should more of user preference instead of global preference. reason being.. i web developer , graphic designer hi-res monitor , show 50+ results per page in joomla backend. on other hand client uses 1024x768 rather show 15 results per page avoid having scroll 10 times screen height see entire list. any chance of becoming user preference opposed global one? sensible suggestion, in light of explanation Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed Joomla! 1.5 Coding

Inviare testo tramite porta seriale a un LCD

Image
ho collegato un lcd ad arduino per riuscire visualizzare il testo immesso tramite la porta seriale ma non riesco creare una variabile per contenere una stringa di testo.fino ad ora sono riuscito solo ad assegnare ad un solo carattere... code: [select] #include <liquidcrystal.h> liquidcrystal lcd(12, 11, 5, 4, 3, 2); void setup() { lcd.begin(16, 2); serial.begin(9600);   } void loop() { if (serial.available()) {    char = serial.read();    lcd.setcursor(0, 0);    lcd.print(a);     }   } intanto per cominciare si saluta per continuare ... togli quel titolo tutto maiuscolo che non siamo ciechi... hai visto qualche treadh su questo forum in maiuscolo? e ancora ... il codice va postato negli appositi tag (simpolo "#") e ancora ... una presentazione non guasterebbe e ancora ... più importante leggiti un po' di regolamento   http://forum.arduino.cc/index.php?topic=149082.0 infine anche un grazie rende più felici tutti   nemmeno la do

Får I andre mails på servage konto? - Joomla! Forum - community, help and support

Image
jeg kan ikke forstå jeg slet ikke har fået mails dag - kun en enkelt kl 12 som var mange timer forsinket... ikke engang spam - de plejer ellers @ være flittige hele døgnet. argh... kan ikke døje sådan noget. jeg kan ikke forstå jeg slet ikke har fået mails dag - kun en enkelt kl 12 som var mange timer forsinket... ikke engang spam - de plejer ellers @ være flittige hele døgnet. nope. intet de sidste 2 dage  Board index Joomla! International Language Support International Zone Danish Forum Diverse (Off topic)

Using CFINPUT dateField with onChange

i imagine easy, have tried search here google , have come empty. i have cfinput datefield control ok when form loads, want control capture new date selection user , update form. believe onchange event used process this, don't know how code refresh form using new date , keep user's date selection. i think i'm there with: <cfinput name="currdate" onchange="geturl('index2.cfm?currdate=' + currdate.selecteddate, '_self')" type="datefield" value="#newcurrdate#" /> but returns value in wrong format like: index2.cfm?currdate=thu%20sep%2014%2000:00:00%20gmt-0700%202000 how format/simplify "currdate.selecteddate"? More discussions in ColdFusion Rich Forms adobe

using GPIO Reading from 4 inputs give me non accurate output - Raspberry Pi Forums

i trying read 4 inputs integer value when test code actual values not match expected my code: code: select all import rpi.gpio gpio import os, time i=0 gpio.setmode(gpio.bcm) gpio.setwarnings(false) gpio.setup(22,gpio.in) gpio.setup(23,gpio.in) gpio.setup(4,gpio.in) gpio.setup(17,gpio.in) gpio.setup(27,gpio.out) = [0,0,0,0,0] while true: n1=gpio.input(22) n2=gpio.input(23) n3=gpio.input(4) n4=gpio.input(17) if(n1==0): if(n2==0): if(n3==0): if(n4==0):#0000 a[i]=0 if(n1==0): if(n2==0): if(n3==0): if(n4==1):#0001 a[i]=1 if(n1==0): if(n2==0): if(n3==1): if(n4==0):#0010 a[i]=2 if(n1==0): if(n2==0): if(n3==1): if(n4==1):#0011 a[i]=3 if(n1==0): if(n2==1): if(n3==0): if(n4==0):#0100 a[i]=4 if(n1==0): if(n2==1): if(n3==0): if(n4==0):#0101 a[i]=5 if(n1==0): if(n2==1): if(n3==1): if(n4==0):#0110 a[i]=6 if(n1==0): if(n2==1): if(n3==1): if(n4==1):#0111 a[i]=7 i=i+1 pr

Mini altimètre de rando

bonjour à tous, je voulais un petit altimètre que je puisse glisser dans ma poche pour aller faire de la rando. il fallait qu'il soit compact et lisible même en  forte luminosité. grace à un petit écran oled et un capteur de pression bmp180 trouvés sur ebay, j'ai pu monter un prototype qui fonctionne bien pour quelques euros.   http://olganet.com/electro/2014/03/29/tiny-altimeter-oled/ reste à faire : un circuit imprimé pour gagner encore un peu de place et trouver le petit boitier idéal ... http://www.youtube.com/watch?v=mmimntv25bw bonjour, réalisation très sympa avec un interface agréable!!! bravo. pierre Arduino Forum > International > Français > Réalisations et Projets Finis (Moderators: jfs, Snootlab) > Mini altimètre de rando arduino

Thread: Fast ping when IP, slow when host name.

painfully slow, 3 pings in 20 seconds. 0.052ms ping each of 3 pings though. code: william@server:~$ ping example.com ping example.com (xxx.xxx.xxx.xxx) 56(84) bytes of data. 64 bytes xxx.xxx.xxx.xxx: icmp_seq=1 ttl=64 time=0.051 ms 64 bytes xxx.xxx.xxx.xxx: icmp_seq=2 ttl=64 time=0.052 ms ^c64 bytes xxx.xxx.xxx.xxx: icmp_seq=3 ttl=64 time=0.050 ms --- example.com ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 20020ms rtt min/avg/max/mdev = 0.050/0.051/0.052/0.000 ms fast. code: william@server:~$ ping xxx.xxx.xxx.xxx ping xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx) 56(84) bytes of data. 64 bytes xxx.xxx.xxx.xxx: icmp_seq=1 ttl=64 time=0.063 ms 64 bytes xxx.xxx.xxx.xxx: icmp_seq=2 ttl=64 time=0.024 ms 64 bytes xxx.xxx.xxx.xxx: icmp_seq=3 ttl=64 time=0.024 ms 64 bytes xxx.xxx.xxx.xxx: icmp_seq=4 ttl=64 time=0.060 ms ^c --- xxx.xxx.xxx.xxx ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 2997ms rtt min/avg/ma

Errore installazione SMF Forum + Bridge - Joomla! Forum - community, help and support

Image
ho installato il forum smf... sembra ok... ho installato il bridge... apportando le modifiche indicate nel file leggimi al template e sembra ok... vado vedere il sito e compare code: select all warning: require_once(../forum/ssi.php) [function.require-once]: failed open stream: no such file or directory in c:\programmi\xampp\htdocs\html\mambots\system\smf_header_include.php on line 67 fatal error: require_once() [function.require]: failed opening required '../forum/ssi.php' (include_path='.;c:\programmi\xampp\php\pear\') in c:\programmi\xampp\htdocs\html\mambots\system\smf_header_include.php on line 67 non ci capisco nulla. help! configurato male.....vero ke il sito , non è nella root del server locale , ma in qualke sottocartella? nella path del forum , se è come dico , aggiungici la cartella , x esmpio smf è in forum , il sito è in tuosito e tuo sito è nella root devi mettere ../tuosito/forum oppure ../../forum ....fammi sapere ciao Board index

cfselect

how selecteditems multiple selection on cfselect on flash remoting? any appreciated!!! i have cfselect in flash form want have multiple selections for. when send data on cfc ( using remoting) not list of data data send. here doing. mlist cfselect , auto value field. this call cfc. myservice.schcreatepa(mlist.selecteditems.auto,.................. i have tried says not array. have tried string get not data back. <cfargument name="mlist" required="false" type="array" default="" /> i have tried looping on list or use arraytolist nothing seems work. More discussions in Advanced Techniques adobe

mysql client - Raspberry Pi Forums

hello everybody have necessity store in database mysql (installed on nas) data readed plc can't store data plc database directly because difficult, can raspberry make bridge plc database?? plc (s7-1200) can send tcp message, thinking send message via tcp raspberry , 1 store mysql, possible? yes. need client code installed , mysql server needs updated listen on inaddr-any address rather listening on localhost only. need rows in privileges table allow remote connector. raspberrypi

probleme detection sonde

Image
bonsoir voici mon code il et écrit pour  5 sonde le problème et que si il n y pas 5 sonde de connectée il ne fonctionne pas j aimerais palie ce probleme en quelque sorte si il n y pas 5 sonde c pas grave il tourne quand meme et indique les sonde non connectée (sans pour autant suprime les sonde je veut qu il s adapte en quelque sorte ) code: [select] #include <onewire.h> #include <liquidcrystal.h> // broche utilisée pour le bus 1-wire onewire ds(13); // création de l'objet onewire ds liquidcrystal lcd(12, 11, 5, 4, 3, 2); boolean gettemperature(float *temp){ byte data[9], addr[8]; // data : données lues depuis le scratchpad // addr : adresse du module 1-wire détecté if (!ds.search(addr)) { // recherche un module 1-wire ds.reset_search(); // réinitialise la recherche de module return false; // retourne une erreur } ds.write(0x44, 1); // on lance une prise de mesure de température delay(100); //tempo rafraichissement // et on attend la fin de la mesure ds.reset(

Header push-pin pigtails

for decades i've had drawer full of little rectangular female "push-pin-type" pigtails slide on pcb dip pins. never paid attention it. alas, cupboard bare. none left. does know source these things in modest quantity. , what, exactly, these called? usually-productive google searches aren't finding much, except 1k+ lots million options @ places digi-key. i need ones break out internal dip headers on due , mega (large , small diameter) allow me disconnect/reconnect wires them. thanks what happens when google dupont connector ? the expensive crimpers last lifetime.  cheap ones aggravate you. Arduino Forum > Using Arduino > General Electronics > Header push-pin pigtails arduino

Python libraries for LCD - Raspberry Pi Forums

i'm using rplcd seems pretty slow. also, i've read somewhere uses /sys/gpio, reason problems. so, have script gets info mpd player , shows on lcd, scrolling texts longer 16 charachters. works fine, except when change song. writting lcd gets slow can see every charachter getting "printed" on lcd, one-by-one. if rplcd uses /sys/gpio, reason, because @ same time, rplcd writting "files" write lcd, while mpd reading files (next song). there other lcd library? if yes, 1 fastest? want print both lines instantly in conditions. https://github.com/adafruit/adafruit_python_charlcd raspberrypi

GSM y puerto serie

he realizado un código con un arduino uno y un shield gsm. es una curiosidad... ¿es posible que el código no funcione cuando hay serial.println ("..."); en el código? tengo un código que lo ejecuto, se carga, hace varias cosas y luego no continua... parece que se queda parado en alguna linea del código. el mismo código comentando o borrando los serial.println("..."); que estaban para poder conocer el flujo del programa por el monitor, funciona perfectamente. alguien sabe por qué sucede esto. el puerto serie requiere tiempos, o manera de usarlo. un saludo. gracias. espero respuestas este asunto tan misterioso y que me desquicia. tu shield usa el puerto serie? para usar serial, pusiste en el setup serial.begin(velocidad)? Arduino Forum > International > Español > Software (Moderators: surbyte, Hector_A)

Input text path probs

ok have input text box type name. have dynamic text box. input text box inside mc. input text box variable named name1 , dymanic text recieve text typed in input text name2. button have made exicute action need contain work. have tried on(release) { name1 = name2 } but failed work. what need do. thanks sterockicy you must add path of mc contains dynamic textbox. or set text of textfield, add '.text' instance name. on(release) { mcname.name1 = name2.text; } hth, blemmo More discussions in ActionScript 1 and 2 adobe

Installing unzip package in Yun or How do I install zip file

Image
hi noblepepper or sonnyyu, how can unzip files in yun. not allowing me install  opkg install unzip. or should use other tool install zip file on directory in yun. sorry may trivial, thanks , appreciate help regards bre code: [select] opkg update code: [select] opkg list |grep unzip code: [select] unzip - 5.52-1 - infozip's unzip program. exception of multi-volume archives (ie, .zip files split across several disks using pkzip's /& option),  can handle file produced either pkzip, or corresponding  infozip zip program. code: [select] opkg install unzip btw,  public forum utilize put multiple horses on race track instead of two.  Arduino Forum > Products > Arduino Yún (Moderator: fabioc84) > Installing unzip package in Yun or How do I install zip file arduino

Ubuntu 15.04 (vivid) Raspberry Pi 2 image - Raspberry Pi Forums

Image
hello everyone i'v made couple different ubuntu 15.04 vivid images raspberry pi 2 using modified version of ryan finnie's (fo0bar) build script. http://www.finnie.org/software/raspberr ... d-image.sh this not snappy ubuntu core image i'm not developer in real capacity, providing type of support out of question. because don't have enough knowledge or time helpful. have google answer you. please feel free use, test , distribute these images see fit. thing ask of you. please post feedback , try helpful other users of these raspberry pi2 ubuntu 15.04 (vivid) images. history if decide use these images make sure read ryan's post on @ official ubuntu wiki. provides allot of useful raspberry pi 2 specific details https://wiki.ubuntu.com/arm/raspberrypi . read original blog posting http://www.finnie.org/2015/02/16/raspbe ... available/ . downloads • ubuntu 15.04 (vivid) server image raspberry pi 2 • ubuntu 15.04 (vivid) standard image raspberry pi 2 checksum:

Lock on Main menu (Plz Help me) - Joomla! Forum - community, help and support

hi friends kindly tell me, how can make lock on content of main menu ( how can  lock icon comes on content of main menu.) thanks regards aasim, aasim wrote: hi friends kindly tell me, how can make lock on content of main menu ( how can  lock icon comes on content of main menu.) thanks regards aasim, i guessing asking if content showing locked, can go backend (administrator) -> system -> global checkin. regards dave Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Simular arduino no PC

boas, alguém sabe se existe um programa que dê para simular parte de hardware como o fritzing mas que dê ao mesmo tempo para simular também o programa? ou seja ao criar o circuito fisico que de depois para virtualmente fazer o upload programa para o microcontrolador e simular o resultado quer programa quer circuito. ha umas livrarias para o proteus que podes simular algumas coisas em redor arduino virtualizado.a uns meses atrás esse post andou por aqui ser divulgado por um colega brasileiro. no entanto recomendo-te ter o hardware fisicamente ja que muita coisa não da para ser simulada. vê aqui: http://arduiny.com/how-to-simulate-arduino-with-proteus-isis/ Arduino Forum > International > Portugues > Simular arduino no PC arduino

Image overlay - Raspberry Pi Forums

Image
hey everyone, brand new forum here , hoping new project. have bit of experience arduino micro controllers have come against project going require me elsewhere solution. working on project need able overlay image onto video feed. have older arcade cabinet uses pac man style game board. while game in in demo mode (before actual game play starts) want overlay bitmap image on video feed coming game board. menu of sorts allow me take have different style accounting system. ie: play games using log in or pin number crediting machine instead of coins. meters ticked using gpio. (reading bill acceptors , crediting machines have done in past familiar aspect) after "menu" action complete game board main video source. since retrofit project solution have hardware based. device need "between" game board output , monitor input. game board output vga , monitor input vga there converters. solution need come taking video signal in, overlaying image (could done in software ru

adding more news items onto the front page - Joomla! Forum - community, help and support

hi there, i wondering how go modifying front page [img=http://img157.imageshack.us/img157/8626/sitelayout2yf8.th.jpg] from http://www.blankbeatz.com anyone have ideas? thanks in administration end go to: menu manager -> mainmenu menu items -> home in parameter settings see leading , intro.  change numbers suit many items wish show on front page.  see image more detail. edit - moving administration forum. Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

vnc su openelec - Raspberry Pi Forums

ciao ragazzi ho un problema con vnc...vorrei collegare il desktop del mio raspberry al mio portatile (ho provato con vnc) in modo da vedere entrambi gli schermi...sul raspberry ho openelec....potete consigliarmi una guida o un tutorial per riuscire venirne capo? grazie in anticipo!!! http://www.maketecheasier.com/enabling- ... pberry-pi/ raspberrypi

Slow Performance Fix - No Format&gt;Font Sets command!

in tech note published address slow robohelp performance, instructions refer format > font sets command. in version of rh7, command not available. there way of turning on can remove unnecessary fonts? never mind, found it. apparently have have cursor in content of file before command becomes visible. consider issue non-issue. check out link. http://blogs.adobe.com/techcomm/2008/05/slow_performance_adobe_robohelp_html_7.html you don't need remove fonts, need replace dll mentioned in http://kb.adobe.com/selfservice/viewcontent.do?externalid=kb403361&sliceid=2 More discussions in FrameMaker Integration adobe

Dual Power for Uno, easydriver 4.4 and 24v stepper…..Wiring questions???

dual power uno, easydriver 4.4 , 24v stepper…..wiring questions??? hello, firs off getting started electronics side of project , getting feet wet in electronics in general too. basically working toward using combination of arduino uno, easydrivers , stepper motors different cnc related projects, @ point doing proof of concept mini projects establish how going work myself. i know these basic questions @ point shall "gun shy" seeing 1 of first things did fry first arduino uno plugging cold(not plugged in) 30v power supply it. (i trying see if connector right size arduino, guessing transformer or capacitors must have had enough juice fry something??? ideas???)  so in position not have lot of money , have had go out , buy new arduino uno @ shack $35 want sure here on out not going fry anything. first question: my basic setup arduino uno sending signals easydriver v4.4 wired mitsumi m42sp-6ta stepper motor(from old compaq printer). my first setup using 12v 750ma wall pow

ร่วมลงนาม จม.เปิดผนึกถึง รมต.ICT - Joomla! Forum - community, help and support

ขณะนี้ชาวโอเพนซอร์สได้ร่วมกันลงนามในจดหมายเปิดผนึกถึงรัฐมนตรี เพื่อชี้แจงและไขความกระจ่างในเรื่องของโอเพนซอร์ส จากที่ท่านได้เข้าใจโอเพนซอร์สแบบผิดๆ และเห็นว่าเป็นสิ่งไม่สำคัญ จึงมีการร่าง จดหมายเปิดผนึก เพื่ออธิบายเรื่องนี้ต่อท่านรัฐมนตรีและต่อสาธารณชน ถึงความเข้าใจที่ถูกต้องของโอเพนซอร์ส จดหมายดังกล่าวจะส่งถึงท่านรัฐมนตรีหลังจากรวบรวมรายชื่อผู้ร่วมยื่นเสนอแล้ว หากคุณเห็นด้วยกับจดหมาย และมีประสงค์จะร่วมยื่นจดหมาย ก็ขอเชิญลงชื่อในคอมเมนต์ท้ายจดหมายได้ครับ นี่คือส่วนหนึ่งของความเข้าใจผิดของรัฐมนตรีที่มีต่อโอเพนซอร์ส     * 'สิทธิชัย'กดปุ่ม คอมพ์เอื้ออาทรพันธุ์ใหม่ ผู้ผลิตผู้ค้าแนะศึกษาข้อผิดพลาดในอดีตมาเป็นบทเรียน : ฐานเศรษฐกิจ     * 'สิทธิชัย โภไคยอุดม' เขียนแผน โครงการไอซีทีไทย ยุครัฐปฏิรูป (2) [13 พ.ย. 49 - 10:19] : ไทยรัฐ     * u-turn @ ict ministry :bangkok post ปล.เรื่องนี้ถูกประนามจากสื่อต่างประเทศเป็นที่เรียบร้อยแล้ว digg, slashdot ลิงก์: ร่วมลงนามในจดหมายเปิดผนึก -> http://www.blognone.com/openletter ส่วน โครงการพัฒนาอุตสาหกรรมไอที รมว.ไอซีที กล่าวว่า เอ็มเบด

Questions Regarding Interfacing with MT9V011 CMOS Image Sensor

i current working on project involves interfacing cmos image sensor arduino. cmos supposed receive light , transfer analog voltages arduino conversion digital.  however, due limited experience micro-controllers, little lost in regards connecting arduino sensor. understand datasheet, cmos connected arduino through two-wire serial bus. however, not sure specifics. so questions are: the datasheet shows "typical configuration," how wire cmos? the cmos has built in adc, can output analog voltages arduino convert? datasheet mentions voltage output, own internal use? what mean when data can change when clock low? mean can update values when clock cycle low? datasheet: http://download.siliconexpert.com/pdfs/2012/7/6/18/17/59/146/aptin_/manual/downloaddocument.doid493mt9v011_ds_plcc_d.pdf Arduino Forum > Using Arduino > Sensors > Questions Reg

nyimpen data/arsip gimana..? - Joomla! Forum - community, help and support

mo nanya nih... kalo mo nyimpen/ngarsipin file file yang pernah dipublish, tapi udah nggak ditampilin lagi gimana ya..? maksudnya kalo sewaktu waktu diperlukan bisa ditampilkan lagi (bisa dipanggil dengan link). thankyu.. di back-end kasih tanda check aja artikel yang mau diarsipin trus klik tombol "archive". trus tinggal bikin menu baru dengan salah satu tipe berikut: blog - content category archive blog - content section blog - content section archive   Board index Joomla! International Language Support International Zone Indonesian Forum Bantuan

Thread: Apache2 basic authentication problem

hi, i've got problem basic authentication of apache2 server. configured .htaccess-file according tutorial http://httpd.apache.org/docs/2.0/howto/auth.html when try access file (with directorys it's same problem) , try login opens login screen again , again. here's content of .htaccess: <files "./hallo.txt"> authtype basic authname passwort authuserfile /var/www/docs/.htusers require valid user </files> suggestions problem?? greets daedalus what exact line apache access or error log? how did create /var/www/docs/.htusers ? Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [SOLVED] Apache2 basic authentication problem Ubuntu

How to set up an external timer interrupt at the highest resolution possible?

i want measure frequency may have slight fluctuations tracking time intervals between crests of wave. is idea use external interrupts purpose? how configure external interrupts. can't find arduino example. prefer use assembly. is possible use external clock source timers higher microcontroller clock itself? how higher? can overclock timer above 20mhz? thanks. quote how configure external interrupts. can't find arduino example. is google broken in country ? http://playground.arduino.cc/code/interrupts http://makezine.com/2012/01/25/how-to-arduino-interrupts/ http://www.dave-auld.net/?option=com_content&view=article&id=107:arduino-interrupts&catid=53:arduino-input-output-basics&itemid=107 about ten thousand more. Arduino Forum > Using Arduino > Programming Questions > How to set up an external timer inte

Multiple SPI

hello, i'm trying control adxl accelerometer arduino have problems due ethernet shield. in fact read, sd slot of ethernet shield controlled spi , id why can not use other purpose... of couse proble software problem (i tried bypas pin 4 of ethernet shield without difference). in project have include -> ethernet.h -> spi.h (because ethernet needs it) -> wire.h (because of accelerometer) does have idea on can solve problem? thanks in advance those devices should work together. post code. Arduino Forum > Using Arduino > Programming Questions > Multiple SPI arduino

problem importing Help topics from FrontPage into RoboHelp

hi there, this first time here. i tech. writer in first job (i've been here couple of weeks). my company has purchsed robohelp, , wants import it's topics frontpage (which know nothing about) robohelp (which know teeny bit about). i know other tech writer here tried import topics, , had r.h. continually crash. i tech. writer here week (aaaggghh! lol), , need know how fix problem. please, when respond, imagine taling first grader , , keep instuctions simple. thanks in advance, leigh-anne this duplicate post. click here see other thread More discussions in RoboHelp HTML adobe

Gallery 2 Bridge crashing - Joomla! Forum - community, help and support

hi, i have been using gallery years, , started build new site using joomla, wanted check out gallery bridge, read it seems powerful. and manage install it, seems fine, until have surfed little bit around gallery, goes white (empty screen). , in joomla administrator, when select configuration gallery component, administrator goes white screen well. can uninstall it, remove component files, , start on again, same thing happens again after surfing. i notice if have set gallery language english, since use norwegian language in joomla, navigation links in gallery in norwegian, unfortunately cannot spell norwegian letters æøå in either navigation links (next/previous) nor in iptc image properties. goes both in joomla , gallery standalone. can clue what's happening? hope can help, component , going! thanks, ohhansen Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

calendar component

i read open sourced calendar componet close being released http://weblogs.macromedia.com/amcleod/archives/2006/08/fade_to_gray_ef.cfm i can not find other info on topic, has seen or heard , if available yet? thanks More discussions in Flex (Read Only) adobe

Arduino Uno not showing on OSX (10.9.2) anymore

hi everybody, here problem: i got board couple of days ago (arduino uno rev3), downloaded ide , uploaded blink example , went fine. after learning basis got seeedstudio nfc shield v2.0 plugged on board, uploaded 1 of example provided library (pn532 e ndef) , nothing works anymore!!! the arduino doesn't show on port list of ide anymore, power led on board can't connect mac... is board gone? is there test can run check if can recover it? any very appreciated!!! thank in advance info provide davide Arduino Forum > Using Arduino > Installation & Troubleshooting > Arduino Uno not showing on OSX (10.9.2) anymore arduino

help me

hello i ask if me aidee i made several attempts not result to turn led l1 must successively: - press p1 - release p1 - press again p1 - press p2 (without releasing p1) - release p2 - release p1. l1 should illuminate 3 seconds. the execution speed of sequence not important. other manipulation considered false. must followed: - waiting until no further key pressed - waiting additional second. then program should resume detection. okay. can that. don't use delay() because during delay() no button activity can detected. learn blink without delay can watch button , timer @ same time. also learn button debounce. search these , read able ask better questions, save typing , time. Arduino Forum > Using Arduino > Project Guidance > help me arduino

Need Help... Somebody, I bet you its an easy one

Image
hi there... i'm new flash... lets i'm learning... things come along other times cant them come along...? english not good, you'll have excuse me. my situation this: i have bug draw in freehand , took copy & paste flash , i'm supposed make move. movie clip. want bug walk around stage. first converted movie clip. make motion tween need motion guide after inserted motion guide layer, , draw path pencil in smooth mode. clicked layer of bug again , cant snap beginning of path... doesnt show me circle... dont know whats wrong... please, help... saludos, sara text hy, are sure 'snap object ' option turned on? it's located in "option" menu on left of screen, red 'u' upside down. try activating that, marker (so little circle trying attach line) snap object (in case guide line). hope helped if i'm not correct, feel free correct me , give answer :) greets More discussions in Adobe Animate CC - General adobe

Console.print really slow

Image
hi, i'll explain project , problem: i'm seeding data sensor console, take console using putty ('telnet localhost 6571) , store data on .log file. plot them matplotlib on python. just simple code understand problem: #include <bridge.h> int pin = 1; int value; void setup() {      bridge.begin();      console.begin(); } void loop() {   value = analogread(pin);   console.println(value); } problem console.print slow , on 5 seconds acquisition i've got ~350/380 samples , mean 60 samples 1 second .print. slow sensor it's not problem, application it's not deal. do have tips increase speed of console.print? sam' 60 samples/sec normal speed bridge. count tomorrow 100gb become popular network interface, not slow, deadly slow. 100gb  with sample length 8 bits = 107,374,182,400 samples/sec don't me wrong, love bridge implementation , software team did wonderful job, high speed samples need different horse.

Need help with a ramp (jump)

hello! i trying figure out how make object (car, bike, skateboard, ski jumper) move across screen , go ramp , continue simulated physics (doesn't have accurate). so far have gravity, forward motion, , ground object not fall through. cannot object go ramp (its bounds square , if pen draw triangle). since elongated object, need rotate too. seems allow me rotate object or shift obect upward. there way make object follow ramp? i'm not looking set path want distance jumped different depending on users input. any help, sample code, or places give me clues appreciated! thanks! More discussions in ActionScript 1 and 2 adobe

Website appearence

i'm developing website in dreamweaver page doesn't work other resolution except 1024 x 768 pixels. how can make website same way in resolutions? > i'm developing website in dreamweaver page doesn't work > other resolution except 1024 x 768 pixels. how can make website > same way in resolutions? well, can't, really. web isn't fixed canvas. web page as large or small browser viewport is. there 2 main ways handle this: - design percentages, allowing page flex needed. - pick fixed-width design , assume need scroll horizontally (smaller viewports) , others see bunch of unused white space (larger viewports). -darrel More discussions in Dreamweaver support forum adobe

I am having trouble serving more than the index file from SD card on a w5100

problem description:  i trying serve index file (possessing outline of menu) , accompanying .css , .js file.   when use webserver example serves index.htm off sd card behaves though bare index file itself.   have shortened names 8.3 in case issue did not. does know might missing? here html menu <!doctype html> <html> <head> <title>test menu</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="mbc.css" type="text/css" /> </head> <body> <ul id="mbmcpebul_table" class="mbmcpebul_menulist css_menu" style="width: 91px; height: 35px;">   <li class="topitem"><a><div class="buttonimg buttonimg_35" style="width: 91px; background-image: url('mb_set_time.gif')">set time</div></a>   <ul>   <li><a title=""&

Adobe Macrovision activation software

does flash mx 2004 use activation software writes track 0 of hard drive? there forum entries so. also adobe site says there no need reactivate regular drive format. but if "low-level" need reactivate. why "low-level" format cause have reactivate if activation software not altering "low-level" of hard drive? there (was) information on macromedia web site ht etechniques used. yes .. write on track 0. -- jeckyl More discussions in Adobe Animate CC - General adobe

Playback controls

Image
can place playback controls on specific slides within movie instead of applying every slide within movie? hi brock22 nope, can hide or show them using widget fellow ace paul dewhurst built. click here visit paul's site if find useful, please consider small donation time , effort. go worthy cause. cheers... rick More discussions in Adobe Captivate adobe

Pi B+ as Mysql DB and NAS - Raspberry Pi Forums

ok have kodi running on desktop pc , fire tv stick using mysql db on pc media hosted. move media external drive connected pi , run sql db off pi sharing both devices (via smb or network share). goal make pc doesn't have on watch on fire tv stick. doable? have found guides 1 or other not both. still newer pi projects , have made few osmc boxes. hi , welcome forum, don't see problem there. 1. move files external hdd 2. move database computer pi: install mysql, maybe export database manually computer, or pi. probably, cannot use db anymore because moved files different place, maybe parts of database keep working - have seen, stopped, etc. don't see how fire tv stick fits in setup. haven't explained well, i'm afraid. raspberrypi

Arduino Yun - SD card mount problem

dear commmunity, i've been struggling make arduino yun recognise sd cards on 2 days no luck. i using "dmesg" see if recognised cant see /dev/sda or something. i dont understand problem is.. many other people expieriencing problems mounting , soft linking sd, issue stranger because sd not recognised openwrt. can me issue? i working on wifi, using putty ssh terminal. have copied dmesg log. have formatted sd card 8gb ntfs & sd card 2gb fat32. none of them recognised. i have powered off yun , porwered on (sd card connected), , through terminal ran command dmesg. here log: http://pastebin.com/07vsvinj i don't see sd related output. should mail support@arduino.cc , explain issue Arduino Forum > Products > Arduino Yún (Moderator: fabioc84) > Arduino Yun - SD card mount problem arduino

VSFTPD @ Raspberry Pi 2 - Raspberry Pi Forums

Image
hi, ich bin gerade daran, einen webserver und einen ftp-server auf meinem pi zu installieren. der webserver funktioniert soweit, jedoch gibt es mit dem ftp ein problem... folgendes soll er können: tls (verschlüsselung) user auf das homeverzeichnis begrenzen im homeverzeichnis ordner/dateien anlegen zum letzten punkt: es soll wirklich im home-ordner chmod 777 herrschen, da ich sonst nur im subverzeichnis verzeichnisse und/oder dateien erstellen kann. hier meine config: code: select all listen=yes local_enable=yes write_enable=yes local_umask=022 dirmessage_enable=yes use_localtime=yes xferlog_enable=yes connect_from_port_20=yes chroot_local_user=yes chroot_list_enable=yes chroot_list_file=/etc/vsftpd.chroot_list secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/vsftpd/vsftpd.pem rsa_private_key_file=/etc/ssl/vsftpd/vsftpd.key ssl_enable=yes allow_anon_ssl=no force_local_data_ssl=yes force_local_logins_ssl=yes ssl_tlsv1=yes ssl_sslv2=no ssl_

NChannel MOSFET/ LED circuit problems

hi i'm trying switch 12v leds using nchannel mosfets. i've got arduino mega2560 pull gates high , low , in 1 configuration, led between power supply , mosfet, led lights when required. however when move led other side of mosfet, ie between mosfet , ground, doesn't can enlighten me why second configuration fails , can make work? many thanks jopeno the first schematic, must have resistor in series led. the second:  led forward voltage + gate source voltage more  vcc, no current can flow. replace mos transistor bipolar transistor ( , resistor ) makes work pelle Arduino Forum > Using Arduino > General Electronics > NChannel MOSFET/ LED circuit problems arduino

Thread: Ubuntu 9.10 y camara fotográfica Olympus E-420. No se detecta la cámara.

Image
saludos des de catalunya, compañeros. me dirijo ustedes para ver si pueden ayudarme, ya que en el catalan team de momento no han podido. hace pocos días me compre una cámara olympus e-420,. cuando intento descargar las fotografías, mi ordinador no me detecta la camara, ni siquiera usando todos los programas de los que dispongo. es curioso que, sin embargo, haciendo un lsusb en la consola sí aparece: logambusi@logambusi-desktop:~$ lsusb bus 001 device 005: id 07b4:0118 olympus optical co., ltd mju mini digital/mju digital 500 camera bus 001 device 004: id 0ace:1215 zydas wla-54l wifi bus 001 device 003: id 0bda:0158 realtek semiconductor corp. mass stroage device bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub bus 002 device 001: id 1d6b:0001 linux foundation 1.1 root hub logambusi@logambusi-desktop:~$ lo intentado con las diferentes opciones de la cámara: opción de descargar usando progr

How to send temperature data from Processing to Arduino?

i'm building weather station uses modified xml yahoo weather example on processing. have setup when specific weather condition met send's particular byte match example if sunny, send byte 'a' , on arduino if receives 'a' prints "sunny" screen. this method seems work ok, , display weather condition outside, how can send temperature data on condition data @ same time? for sending data processing, tried (or along lines of) serial.write(temperature); i have feeling it's sending temperature data arduino, how access data , code use on arduino print temperature data onto lcd screen? i've been using arduino 3 months, maybe i'm way on head on project. (anywhere see n/a f temperature data supposed go) arduino code: int ledg = 13; //led green (good weather) int ledy = 10; //led yellow (mild weather, rain, etc) int ledr = 9; // led red (severe weather alert) //int temp = serial.read, temperature; //include library code: #include<liquidcrys