Posts

Showing posts from September, 2014

Thread: how to benefit from apt/cache folder

hay every body : at first want ask of excuze me , i'm not in english have qestion , install ubuntu 10.4 snowpine advise me , want thank him qestion ?? how can benefit deb package in apt/cache folder ???? make update , install deb package how make useful put in mine can't paste in thing in cache folder wait respond is info want? avoid downloading updates after reinstall: ubuntu stores downloaded packages in /var/cache/apt/archives save these files , after new installation copy them same location. after apt-get update , apt-get upgrade Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] how to benefit from apt/cache folder Ubuntu

Multiple queries inside each other ?? Possible?

i doing query on table pulls data customers number.  than, on output on screen, need display clients name customers number.  however, clients name inside table under clientsinfo.   i need output this:   client number: 123 (john smith)     this doesn't work below?   idea?   <cfquery name="checkclientnumber" datasource="allsales">          select * clientsales          clientnumber = '#clientnumber#'     </cfquery>            <cfoutput query ="checkclientnumber">client number:  #clientnumber#                     <cfquery name="client" datasource="clientsinfo">                         select lastname, firstname clients                         clientnumber = '#clientnumber#'                  </cfquery>   <cfoutput query="client"> ( #firstname# #lastname# )</cfoutput>     </cfoutput> how not work?  errors, wrong data, hums out of tune? More discussions in Adva

Thread: Unable to resolve host

hey everyone, having problem in terminal window. when try various operations following message before operation starts. sudo: unable resolve host tims-laptop ideas cure? if /etc/hostname file contains name 'tims-laptop', there should entry tims-laptop in /etc/hosts file, too, in: code: 127.0.1.1 tims-laptop this allow hostname resolved localhost address. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [SOLVED] Unable to resolve host Ubuntu

collapse right column and extend content for 1.5 - Joomla! Forum - community, help and support

hello, can scenerio. i've managed colapse/hide right column cannot figure how extend content area fill space. please. i'm trying this: <div class="inside"> code: select all <?php if($this->countmodules('right')) : ?>  <div id="sidebar_right"class="float">   <jdoc:include type="modules" name="right" style="xhtml"/> </div> <?php else: ?> <?php if($this->countmodules('right') < 0) : ?> <style type="text/css"> #content width:70%; #sidebar_right width:0%; </style> <?php endif; ?> </div> i'm no means expert think may have edit *.css file template using. change width setting content area. when i've made types of changes layout describing, i've done editing *.css files. Board index Joomla! Older Version Support Joomla! 1.5 Templates for Joomla!

Split current catalog into more than one?

i have entirely many pictures in 1 pse6 catalog.  can split current catalog more 1 catalog?  if so, easiest way so?  thank you. how many photos have?  pse can handle very large number, if have organised. More discussions in Photoshop Elements adobe

Dates not behaving as expected

hello,   i using livecycle designer 8.05 , trying create field  users enter effective date ("txt_effdate" - 'date/time' field)  , end date ("txt_enddate" - 'date/time field) a  transaction, , if end date less 6 months start  date error message.   i used code below read  "txt_effdate" field , create field ("sixmos") that  displays date 6 months after start date: // "sixmos" -  text field var effdate = util.scand("mm/dd/yyyy",  txt_effdate.formattedvalue); var sfullyear = effdate.getfullyear(); var  smonth = effdate.getmonth(); var sdate = effdate.getdate(); this.formattedvalue  = util.printd("mm/dd/yyyy", new date(sfullyear, (smonth + 6), sdate) );   the trouble  comes in when try compare end date "sixmos" date.  the  following code lets dates pass, meaning cannot recognize the  "txt_enddate" less "sixmos" date:   var aeffdate =  util.scand("mm/dd/yyyy", txt_effdate.

[réglé] Comment placer une image dans une liste d'articles - Joomla! Forum - community, help and support

Image
bonjour. voici la page en question : http://rivieredevent.org/index.php?option=com_content&view=category&id=50&itemid=582 je voudrais placer une photo à droite de cette page et qui serait de haut en bas le long de la liste; j'ai besoin d'indices car je ne connais qu'un peu de css et tout n'est pas clair dans ma tête merci de prendre un peu de temps pour m'aider midisyl c'est un article ta page ? il faut donc utiliser l'insertion classique d'images via ton éditeur. parce que le css, c'est appelé par un fichier html et en général pour l'ensemble du site ou au moins pour un groupe de pages. Board index Joomla! International Language Support International Zone French Forum J! 1.5.x - L'atelier! 1.5 - Templates et design

Content from the main area flows around the menu to the left - Joomla! Forum - community, help and support

i using custom template made. first 1 have ever tried , joomla beginner. of content being wrapped around left menu item not desire. not in milkyway template sure there don't know how do. here picture of happening. front end editing happens @ other places such when displaying form made fabrik component. capture.png here code. code: select all <?php defined( '_jexec' ) or die( 'restricted access' );?> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"     "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"    xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >        <head> <jdoc:include type="head" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" /> <link rel=&quo

Fireboard - Topic content too long and no background! Help? - Joomla! Forum - community, help and support

Image
can me? first problem in fireboard, topic content long , width of whole page, example, threads pageis normal. second problem there no background on topic content, it's transparent. i'll include picture of both problems , link problem. http://www.jakebeck.co.uk/jake/index.php?option=com_fireboard&itemid=2&func=view&id=1&catid=7#1 fireboard problem.jpg it great if me out. i'm new joomla! please go easy big words. thanks, j. sorry realised might have posted inthe wrong place. Board index Joomla! Older Version Support Joomla! 1.5 General Questions/New to Joomla! 1.5

How to update two database tables as the same Usernamethats logged in?

i have created 2 separate database tables in php/mysql want store user information in. first user table made fields: id, username, password. second table made fields: id, firstname, lastname, address, phone. i want make update record page restricted username , password update both table1 , table 2 mysql database. i have created registration page, login page , restricted page when user signs in. on restricted page want update users information. i have tried few things , can table has username field update, can't second table update first table. it's not clear description whether have created relationship between 2 tables. both have id column, presumably record's primary key, need create relationship storing primary key of 1 table foreign key in child (related) table. example, should insert primary key of first table in second table user_id. enables identify username , password related individual listed in second table.   without foreign key relationship between tables, you

Thread: A few questions about ubuntu...

Image
hello: have few questions ubuntu: 1. can length of time used auto time-out (lock) feature lengthened? 2. there difference between document file created ms word , document created oo word? 3. wine (or virtualbox or vmware) require windows os still exist on pc launch windows applications? 4. there performance advantages gained deleting installed programs not use? 5. synaptic package manager delete all files , directories during its' uninstall process. 6. there advantages (aside increasing disk space) or disadvantages (aside direct boot ubuntu) in deleting windows xp computer? thank you. rob. posted robert.thompson hello: have few questions ubuntu: 1. can length of time used auto time-out (lock) feature lengthened? i assuming mean screensaver requires password when come back. can go system&

Thread: Steel Storm

i don't know if has seen yet thought post see. steel storm arcade shooter in development linux, mac , windows. news article video -> http://www.gamingonlinux.info/news.php?view=60 official website -> http://www.kot-in-action.com/blog/ it's looking pretty good. Forum The Ubuntu Forum Community Ubuntu Specialised Support Gaming & Leisure Steel Storm Ubuntu

Thread: HDD shuts down when not in use

so, i've had bad experiences when used enable power saving in hdds; have 2 of suckers burned down. didn't find in bios related shuting down disc when idle , have been trying find out way disable power saving feature in box had no success. know if ubuntu has setting somewhere? , if does, please tell me config file? i'm aware hdparm might have i've checked config files , haven't seen strange. i'm running ubuntu 10.04 "out of box" (32-bit) in asrock h55m in advance Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [all variants] HDD shuts down when not in use Ubuntu

Thread: Make Whole Opera Transparent like in Windows 7?

Image
i figured out how make border transparent, in w7 whole opera transparent. how do in ubuntu? no 1 knows? or maybe not possible? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] Make Whole Opera Transparent like in Windows 7? Ubuntu

Access Level menu not visible when adding new Section - Joomla! Forum - community, help and support

joomla version: 1.5.14 xampp on localhost system information: php 5.3.0, apache 2.2.12 (ipv6 enabled), mysql 5.1.37 os: windows xp the problem in detail: going through quick start example, landscape smart , adding new section. - form fields for: order , access level not visible. this warning present: warning: parameter 1 jhtmllist::specificordering() expected reference, value given in c:\wwwdev\xampp\htdocs\joomla15\libraries\joomla\html\html.php on line 87 i have uninstalled , re-installed joomla x2 , have same situation each time. joomla-quickstart-error.gif what version of php running? Board index Joomla! Older Version Support Joomla! 1.5 General Questions/New to Joomla! 1.5

Media Encoder will not open in windows 7

i had lot of problems premiere pro cs4 after loaded on new system windows 7. after got working burned blue-ray using encore , worked ok.   i'm using windows 7 lastest updates , computer has latest drivers.   today have  been trying save avi file disk using media encoder. when export timeline create avi get:   problem signature:   problem event name:   appcrash   application name:         adobe media encoder.exe   application version:     4.2.0.0   application timestamp:             4af13937   fault module name:     watchfolder.dll   fault module version: 0.0.0.0   fault module timestamp:          4af1344e   exception code:             c0000005   exception offset:           00011f03   os version:       6.1.7600.2.0.0.256.48   locale id:          4105   additional information 1:          0a9e   additional information 2:          0a9e372d3b4ad19135b953a78882e789   additional information 3:          0a9e   additional information 4:          0a9e372d3b4ad19135b953a78882e789   read our

How do I display variables with # in them?

hello cf peeps.   i let users of site create unique usernames , upload pictures.  able search items exact name entered.   today user signed name goboy#4.   how can avoid getting cf error when on profile page output <cfoutput>#username#</cfoutput> username = goboy#4?   thanks! you have escape them adding , additional # since middle of variable may have write kind of filter. future accounts create script not allow special characters before account created. More discussions in ColdFusion adobe

Creating New Catalogues

i create new catalogue each client. however, each time create catalogue loose all me saved presets nameplate etc.   is correct? i think identity plate stored in catalog.   however, rest of presets may stored in 2 different places: next catalog or in user profile folder of system. in first case, visible in catalog only, in latter — in catalog. More discussions in Lightroom Classic CC adobe

PhotoSlid 2 - Joomla! Forum - community, help and support

hola buenas todos, sou novo por aqui e esta eh minha primeira participação no nosso forum, estou trabalhando e estudando joomla nos templates que vem por padrão, mas eu baixei um template free, muito bom por sinal, mas quero colocar um banner como este em flash http://www.cortgeneticabrasil.com/ que ja descobri que eh photoslid 2, e instalei ele no meu template na posição " top " no modulo newsflash, que ele fica pequeno tamanho newsflash, sera devo criar um novo modulo? ja fiz alteraçoes no tamanho modulo quando instalei e mesmo assim não adinta. obrigado todos e aguardo. Board index Joomla! International Language Support International Zone Portuguese Forum Componentes, módulos e mambots

Uk date format issue with ASP and Access Database

i have asp form updates records in access database. problem that date format in database record dd/mm/yyyy (uk), when the record displayed on form mm/dd/yyyy(us) after update record in database date has changed new format. i have tried can change format no avail...anyone ideas how can resolve issue? thanks steve stevo.s wrote: > have asp form updates records in access database. problem > date format in database record dd/mm/yyyy (uk), when > record displayed on form mm/dd/yyyy(us) after > update record in database date has changed new format. > > have tried can change format no > avail...anyone ideas how can resolve issue? what have tried far? dooza -- posting guidelines http://www.adobe.com/support/forums/guidelines.html how ask smart questions http://www.catb.org/esr/faqs/smart-questions.html More discussions in Develop server-side applications in Dreamweaver adobe

Cube led [demultiplexage et programmation]

bonsoir, je suis en cour de projet, en terminale, et notre et la construction d'une matrice led 8*8*8. je suis tombé sur ce topic http://arduino.cc/forum/index.php?topic=104414.0 mais il ne repond pas certaine de mes interogations: j'ai prévu 8 tlc5916 comme driver sink pour les colones, avec une r-ext de 937ohm(le calcul est bon ?) pour les couches c'est la ou les problemes commencent, je pensais partir sur un 74hc138 ainsi q'un mic2891 comme circuit de transistors, mais je ne sais pas du tout si c'est bon et les calculs faire sachant qu'il s'agit de ces leds http://www.planeteleds.fr/catalogue/153-leds/7-leds-hl-5-mm/17-bleu-10-11-20000-mcd/440-50-leds-bleues-10500-mcd-5-mm.html merci ceux qui pourraient m'aider un petit peu(ou meme beaucoup hein) il y un tutoriel sur les cubes led 8x8x8 sur http://www.instructables.com/id/how-to-build-an-8x8x8-led-cube-and-control-it-with/ Arduino Forum

PMB-648 GPS SiRF Libraries

does 1 still need library below pmb-648 gps sirf? http://arduiniana.org/libraries/tinygps the browser returns 404 error....maybe site down??? same thing happening library below, worked few minutes ago , see included in arduino core. tinygps included now? http://arduiniana.org/libraries/newsoftserial Arduino Forum > Using Arduino > Sensors > PMB-648 GPS SiRF Libraries arduino

Menu Builder for Captivate 4

Image
hello! i downloaded captivate 4 , i'm trying find menu builder. captivate 4 still have piece of functionality? any advise appreciated. thank you! welcome our community, kevin i believe menubuilder disappeared version. i'm guessing because captivate has built in menuing functionality , providing aggregator captivate 4, decided drop menubuilder. cheers... rick More discussions in Adobe Captivate adobe

How to get back the "Would you also like to examine your document" message during redaction

can let me know how reinstate message displays during redaction process, after selecting "apply redactions" reads:   "redactions have been applied. would examine document additional document information?"   someone checked box "always perform selected action" , need back.   i've looked in preferences , not able locate message can reactivated.   this adobe acrobat 9 pro windows.   any suggestions?   thank you. try preferences>general>warnings , click "reset warnings". More discussions in Acrobat Windows (read-only) adobe

"copy with formating" not available

when create documents adobe acrobate, go copy paragraph, have option "copy formating", , grayed out.   why? copy or export "with format" facility of tagged pdf.     be well... More discussions in Acrobat Windows (read-only) adobe

Simple attachMovie question

i have movie needs captions sync voiceover. user has option of showing captions (they off default)   i have attached captions in movie called "text" code:   attachmovie_btn.onrelease = function(){     this._parent.attachmovie("text", "text_mc", 1);     trio_mc._x = 275;     trio_mc._y = 200; };   the user turns off captions code:   on (release) { _parent.text_mc.removemovieclip(); }   my issue if user turns captions off , on captions start first frame when movie 1 minute presentation. know if graphic vs. movieclip have problem except can't control graphic actionscript.   two questions. 1) there anyway have captions keep starting on first frame , stay sync voice on whole presentation?… through  visible = false or visible = true actionscript.   2) can control graphic timeline vs. movie timeline visible = true or visible = false code?   thanks, brian i don't know keeps captions in synch begin with, can't recommend differently.  have stay in sync

Thread: Can't Write to My Samba Share (NTFS)

so have samba share ghosting images (backing computers @ work) , can read ghost images fine share, unable write share. windows environment have tried, disk full error. have 200gb+ free space, not actual issue. believe there write permission somewhere overlooking. setup lets me log in under username samba client machine. here smb.conf file: code: #======================= global settings ======================= [global] workgroup = discount.local server string = %h server (samba, ubuntu) lanman auth = yes client lanman auth = yes security = user encrypt passwords = yes passdb backend = tdbsam obey pam restrictions = yes unix password sync = yes passwd program = /usr/bin/passwd %u passwd chat = *enter\snew\s*\spassword:* %n\n *retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . pam password change = yes map guest = bad user socket options = tcp_nodelay [share] comment = de image server valid users =

Ending Preset special effects in After Effects CS4

working behavior effect, wigglerama, overall effect run few seconds in video working on , stop video @ normal postion , scale.   how can go doing this? tried place keyframe @ beginning , place 1 @ end had normalized , see if remove effect rest or stop @ point, either removes or stops beginning.   any ideas on missing? any ideas on missing?   you did not animate correct parameters, plain , simple. parameters must animated, there no generic master control in effect.   mylenium More discussions in After Effects adobe

Thread: Installation

when try install ubuntu, gives me error reading "uncompressed error system halted" , nothing. have downloaded , installed file 3 different times on 2 different computers. ideas? are talking wubi installer? computer specs., ram, disk capacity, graphics card etc.? more tell us, better can suggestions , advice. thanks. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Installation Ubuntu

How do you get four digit sequence numbers in LR3 starting with 0001?

i getting ready process first wedding lr3 , have discovered seemingly not allow sequence begin zeros (0001 instance) way in lr2.  problem me because use pcs don't recognize 1 followed 2 - not 10.  have looked in preferences , couldn't find way change it.  sure there way change this, can't find it.  appreciated. it's same template in lr2 in renaming-edit dialog.  it's "0001" option. More discussions in Lightroom Classic CC adobe

Thread: Suggestions on Ubuntu 10.04 and Dell Lattitude E5400

hi folks, planning start using ubuntu again. planning install ubuntu 10.04 on dell latitude e5400. primary requirements configure wireless , install vmware or may virtual box people share experience of ubuntu 10.04 dell latitude e5400 , believe can latest ubuntu (which assume 10.04) here - dvd: http://cdimage.ubuntu.com/releases/10.04/release/ cd: http://www.ubuntu.com/desktop/get-ubuntu/download Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Suggestions on Ubuntu 10.04 and Dell Lattitude E5400 Ubuntu

Thread: multiple linux distros on a Live USB

i wondering if possible have multiple linux distros in usb flash drive. can select distro , run live usb try or install hard drive. possible ? i did manually , have several ubuntu & rescue isos booted grub2. main issue had finding correct grub2 entries. multiboot usb grub2 (boot directly iso files) full script limited isos, used commands http://www.panticz.de/multibootusb http://members.iinet.net/~herman546/....html#grub_usb howto: booting livecd isos usb flash drive grub2 http://ubuntuforums.org/showthread.php?t=1288604 install grub2, create folder isos , edit grub.cfg loop mount isos. http://www.pendrivelinux.com/install...-ubuntu-linux/ script looks entire thing fo many isos: multibootusb - install , boot multiple linux pendrive / flash drive / usb disk http://ubuntuforums.org/showthread.php?t=1518273 Forum The Ubuntu Forum Community Ubuntu Communi

cannot replace with after effect composition.

Image
hye there.. i have mac os on hackintosh- i7-920,6gb of ram , on i have cs4 master collection installed on it-all legal , original   i trying send premiere few clips after effect using method:   i choosing actual clips wanted work on in ae time line in premiere pro right clicked on them , choose the "replace after effect composition"   it opened after effect asking me first save project: save as   i gave name , clips has arrived premiere appear offline...i have tried reloading clips no real success.   has has clue might problem...   i repaired permissions on mac i have reinstalled production suit and have looked trough tutorials on web see how , appeared in right.. so clips???   help me out guys thanks avis144 there more it... i thought i'll try , import clips hard drive  (not premiere) strait after effect... well wasn't successful gave me massage     can problem???   i thought if premiere can read file after effect..   well video in .mov format.   can me our here???

Optimum System

i looking buy new pc premiere pro cs5.   any suggestions on , how many processors, how ram, nvidia graphics card , hard drive setup should get.   i have decent budget. what decent? maybe start here: adobe forums: pc build? More discussions in Hardware Forum adobe

PHP namespace not recognized in DW

dreamweaver cs5 says have error in code when write "namespace" eventhough it's correctly written according php manual. there workaround this? able define own language constructs in dw? dreamweaver cs5's php support based on php 5.2. that's why doesn't recognize use of namespace. afaik, there's nothing can it, apart submitting feature request ( https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform ) upgrade support php 5.3.   although php 5.3 released @ end of june last year, still in development when work started on integrating syntax checker , other php enhancements dreamweaver cs5. understand contacts in dreamweaver engineering team, waiting php 5.3 finalized have resulted in having drop many of planned features. so, decision made go stable 5.2 release. More discussions in Develop server-side applications in Dreamweaver adobe

How to stop Illustrator CS5 from automatically reversing Hebrew text?

for example, copying מיכאל source , pasting illustrator give me automatically reversed לאכימ .   as things now, have use tools reverse hebrew text  before pasting them illustrator. applying workaround thousands of hebrew words , short phrases kind of frustrating thought.   is there way stop illustrator doing this? or conversely, have illustrator automatically reverse text inputs?   many attention. you use correct me version of ai supports rtl writing. other - no, behavior normal version of ai defaults western/ latin encoding.   mylenium More discussions in Illustrator adobe

Thread: Which File System For Dual Boot?

hey guys. first , foremost hello all. proud member of ubuntu community , ubuntu user. point... new system build complete , formatting in hour , installing os's. running 64 bit quadcore system , plan dual boot ubuntu , windows 7 ultimate. however, torn on filesystem use. have been out of pc craze past 2 years familiarizing myself mechanics , modifications of fast cars. have returned, has changed left catch i'm coming here quick answer. running 1tb raid 10 array, , not want split drivespace evenly each os. approach better idea? should use ntfs or ext3? plans machine ubuntu everyday computing , games run natively on linux. windows 7 reserved games run on windows in fact, gaming reason not switching solely linux machine. now, each operating system , it's programs installed , run on it's own native filesystem ntfs windows , ext3 ubuntu. torn filesystem store else on. should movies, music , games stored on ext3 or ntfs filesystem? c

How to display a module on search results page - Joomla! Forum - community, help and support

i want display module on left hand side (which shows random pics) on search results page. have module created , shown fine on other specific pages. how can this? thanks. you posted same question in forum: viewtopic.php?f=428&t=432921 double posting (aka cross posting) against forum rules: viewtopic.php?f=8&t=65 Board index Joomla! Older Version Support Joomla! 1.5 Administration 1.5

UserMeta: Calendar parameter not working - Joomla! Forum - community, help and support

hello, i'm using usermeta plugin save user's birthdate , i'm using following parameter in user.xml: code: select all <param name="birthdate" type="calendar" default="" label="birthdate" description="enter birthdate" format="%y-%m-%d" /> but works inside administration user manager, not in user registration form. the registration page ignoring addscriptdeclaration function in line 286 of /libraries/joomla/html/html.php , calendar.setup event not generated. if can i'll grateful. Board index Joomla! Older Version Support Joomla! 1.5 Extensions for Joomla! 1.5

Thread: problemas con nautilus

Image
hola, hace dias quise cambiar los persmisos de una carpeta en mi ordenador y utilizando el comando sudo nautilus me dio un error (nautilus:3425): gtk-warning **: imposible encontrar el motor de temas en la ruta al _modulo: «ubuntulooks», espero me puedan ayudar, de antemano gracias! posted eduard gza hola, hace dias quise cambiar los persmisos de una carpeta en mi ordenador y utilizando el comando sudo nautilus me dio un error (nautilus:3425): gtk-warning **: imposible encontrar el motor de temas en la ruta al _modulo: «ubuntulooks», espero me puedan ayudar, de antemano gracias! talvez si le das sudo -s al iniciar, y despues sudo nautilus, deberia de pedirte la contraseña xd Forum The Ubuntu Forum Community Other Discussion and Support Ubuntu LoCo Team Forums Americas LoCo

Thread: Problem in dual booting

Image
hello, installed ubuntu couple days ago , shortly after windows xp. without windows fine (as expected ) after installation cant access os i'd work in. tried fixing problem terminal via livecd windows don't read it. there way fix dual booting through windows' command line? as stated, no - you'd need several things not possible windows before solution in can invoke linux windows boot menu. you've done clobbered bootstrap code installing winxp, , you'd ideally have saved copy of code before took step. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [SOLVED] Problem in dual booting Ubuntu

360° Panorama-Website about Vienna /Austria - Joomla! Forum - community, help and support

http://www.surfvienna.net i running site in order publish panoramas of vienna. far there 65 panos connected big tour through old town. target audience tourists , people interested in vienna , maybe want go there 1 day. think site fulfills needs of audience? there missing? thanks in advance feedback! christian hulkie wrote: is there missing? google street view? Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed 1.5 Site Showcase - Archived

Portfolio structure

i have acrobat portfolio. lot.   i individ files kept separate, instead of in port. external?   this lot. thanks   -matt you can extract or delete files portfolio. if extract file portfolio, there no relation between extracted file , original portfolio. More discussions in Acrobat Windows (read-only) adobe

Thread: desktop envinroments

Image
how many bit recommended daily desktop users? posted cableman how many bit recommended daily desktop users? it depends on processor/ram. if process supports 64 bit , have more 3 gb of ram, i'd go 64 bit. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] desktop envinroments Ubuntu

Save and automatically PUT files

hi,   i think disabled function whereby can save file , automatically have put file website.   now can't enable function.  can tell me is?   in cs4 in manage site area. think moved someplace in preferences dialog, can't seem find it.   thanks.   jane please don't this.  it's dangerous feature use.  why?  1 stupid mistake , have not overwritten local file, remote file well.  convenience of feature more overridden risk, in opinion! More discussions in Dreamweaver support forum adobe

Thread: vflip v4l1/v4l2

anyone knows how change webcam orientation in ubuntu vertical flip? got a4tech on shop , mount upside down , i'd change setting. hayz 2days of hunting vflip wala pa talagang malinaw na solution siguro pabyaan ko muna until na malagyan ng vflip option ang zc3xx... Forum The Ubuntu Forum Community Other Discussion and Support Ubuntu LoCo Team Forums Asia and Oceania LoCo Teams Philippine Team vflip v4l1/v4l2 Ubuntu

Thread: What is the best way to get some more space?

Image
ok, have started run out of comfortable space needs (i lot of vm work) , have taken space out of windows partition (which hope blowing out within christmas). want carry stuff on ubuntu thinking of formatting unallocated space ntfs / fat32. have things on 3 gbs thinking ntfs (because of restrictions on fat32), ubuntu can't write ntfs real well. expanding ubuntu partition take space, need space both ubuntu , windows can look, , use. have posted screenshot of gparted layout current. thanks! attached images screenshot--dev-sda - gparted.png (72.4 kb, 21 views) if you've never run command, been using install while, working fine on install, , confident continue have broadband internet, ought free space: sudo apt-get clean deletes stuff in /var/cache/apt/archives - stuff needed if have