Posts

Modulo de sistema de afiliados - Joomla! Forum - community, help and support

estou fazendo um site em joomla. nunca tinha usado um cms, entao ainda estou aprendendo. meu problema eh que preciso de um sistema de afiliados onde pessoas se cadastrem no meu site, peguem o codigo meu banner e ganhem uma comissao por cada venda e sobre novos afiliados que indicarem. tem algo assim disponivel para joomla? agradeco pela atencao de voces. que gere tão automáticamente como você sugeriu, acho que não tem. meio que braçal, mas você pode gerar o banner com o artabnners e dar o código banner pros clientes. Board index Joomla! International Language Support International Zone Portuguese Forum Componentes, módulos e mambots

Will my ESC be enough for my motors? Battery recommendations?

hello, im using 6 brushless motors, 6 esc brushless motors: link esc: link the motors says "max current: 22a" 35amp esc ok handling it? also lipo battery u guys perfer? batteries, 2s, that's limit of motor if read specs. i think combination should ok, rc forums have more experience draw on. Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > Will my ESC be enough for my motors? Battery recommendations? arduino

Problem with DS3232RTC library

hello guys! i'm trying use ds3232 make external interrupt periodically wake arduino @ power saving mode! the circuit wired can set , read code below. so think circuit correctly. code: [select] #include "wire.h" #define ds3231_i2c_address 0x68 // convert normal decimal numbers binary coded decimal byte dectobcd(byte val) {   return( (val/10*16) + (val%10) ); } // convert binary coded decimal normal decimal numbers byte bcdtodec(byte val) {   return( (val/16*10) + (val%16) ); } void setup() {   wire.begin();   serial.begin(9600);   // set initial time here:   // ds3231 seconds, minutes, hours, day, date, month, year   //setds3231time(30,4,17,1,8,1,17); } void setds3231time(byte second, byte minute, byte hour, byte dayofweek, byte dayofmonth, byte month, byte year) {   // sets time , date data ds3231   wire.begintransmission(ds3231_i2c_address);   wire.write(0); // se...

where do I find php.ini on a mac osx server to change post_max_filesize - Joomla! Forum - community, help and support

Image
hi im not newbie @ joomla/mambo @ server admin can me out , tell me find php.ini on mac osx server. i have remote desktop mac server admin app cant find php.ini in search i have tried changing file uploads , sizes in .htaccess doesnt work - guess overide not turned on in httpd.conf - , cant find either you gratefully appreciated thanks in advance w Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

Thread: Colors in Vim via gnome terminal are not the same with gVim

hi, why colors when using color scheme 'blackboard' via vim in gnome terminal not same when use same theme in gvim? i.e. background black while on gvim it's blue , function names not colroed etc. few parts of teh code colored. here's .vimrc code: filetype plugin indent on set number let &t_co=256 also on profile preferences > colors tab, got: bulit-in schemes: green on black built-in schemes: xterm Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Colors in Vim via gnome terminal are not the same with gVim Ubuntu

Thread: Dual Boot Linux w/Grub2 partition and Home partition

i setup computer dual boot of ubuntu 9.1 , mandriva 2010. since still manage screw system time time separate home partition , boot partition nice not loose when these occurrences happen. have 500 gb drive way partition such adventure? thinking partitions os's not need large if had separate home directory use music, pictures, movies etc. , dedicated grub partition should still able boot other os in times of trouble ( or plan @ rate). have live cd ubuntu 9.1 , mandriva. how should proceed next? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Dual Boot Linux w/Grub2 partition and Home partition Ubuntu

Code Optimiztion

hi guys  have project automated high power led lighting system has 4 channels controlled using pwm , rtc clock. my issue first time using arduino such major thing , rtc. have basic code layout need optimize since using 95% of memory wondering if me improve it. code: [select] #include <wire.h> #include "sodaq_ds3231.h" //declare times , corresponding led brightness const char* ledtime[] = {"00:00", "00:15", "00:30", "00:45", "01:00", "01:15", "01:30", "01:45", "02:00", "02:15", "02:30", "02:45", "03:00", "03:15", "03:30", "03:45", "04:00", "04:15", "04:30", "04:45", "05:00", "05:15", "05:30", "05:45", "06:00", "06:15", "06:30", "06:45", "07:00", "07:15", ...