reconfig password
sudo dpkg-reconfigure mysql-server-5.5
sudo dpkg-reconfigure mysql-server-5.5
sudo apt-get remove --purge [apache2 apache2-utils]
sudo apt-get install [apache2]
apt-get purge libapache2-mod-php5 php5 && \
apt-get install libapache2-mod-php5 php5
I justed removed the file again using 'rm -f
conf.d'. It was gone. Then run sudo apt-get autoremove
libapache2-mod-php5 php5 / sudo apt-get install libapache2-mod-php5
php5.
Same situation: conf.d is a broken symlink, php.ini is missing. Apache
is running, but php is not working at all (downloading php-files)
sudo service apache2 restart|stop|start
text-rendering property AMK mentioned, there is also a Webkit (Chrome) specific hack for antialiasing: -webkit-font-smoothing: antialiased; (I believe the default value is subpixel-antialiased) which is nice to use since Webkit webfont rendering can be less than ideal on Windows machines in particular. A bit more info can be found here.<!--[if lt IE 9]>
<script src="dist/html5shiv.js"></script>
<![endif]-->
http://code.google.com/p/html5shiv/
/*micro-clearfix by Nicolas Gallagher http://nicolasgallagher.com/micro-clearfix-hack/*/
/* For modern browsers */
.cf:before, .cf:after { content:""; display:table; }
.cf:after { clear:both; }
/* For IE 6/7 (trigger hasLayout) */ .cf { zoom:1; }
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
| Hello,
I've been trying to install CS6 on Ubuntu 10.04 using wine 1.5 (apparently wine 1.5 is only available for more recent os). I ended up adding odbc32.dll and odbcint.dll using dll- fixer http://www.dll-files.com/dllindex/dll-files.shtml?odbcint to correct the glitches #wine setup sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine1.5 #change wine prefix rm -rf .wine WINEARCH=win32 WINEPREFIX=~/.wine winecfg #get winetricks script wget http://kegel.com/wine/winetricks #setup dependencies sh winetricks -q atmlib gdiplus ie6 vcrun2005sp1 vcrun2008 fontsmooth-rgb corefonts msxml3 msxml6 vcrun2010 # Configure wine install prefix and architecture export WINEPREFIX=$PREFIX export WINEARCH=win32 # # Install dll files winetricks atmlib # Message from previous gdiplus install tryout: # Please download NDP1.0sp2-KB830348-X86-Enu.exe from download.cnet.com/NET-Framework-1-0-GDIPLUS-DLL-Security-Update/3000-10250_4-10732223.html and place it in $HOME/.cache/winetricks/gdiplus, then re-run this script. cp $DIRECTORY/CS6/DLL\ FILE/NDP1.0sp2-KB830348-X86-Enu.exe $HOME/.cache/winetricks/gdiplus/. winetricks gdiplus winetricks msxml3 winetricks msxml6 winetricks dotnet20 # dotnet20 install completed, but installed file $PREFIX/dosdevices/c:/windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll not found cp $DIRECTORY/CS6/DLL\ FILE/mscorlib.dll $PREFIX/dosdevices/c:/windows/Microsoft.NET/Framework/v2.0.50727/. winetricks vcrun2005sp1 winetricks vcrun2008 # vcrun2008 install completed, but installed file $PREFIX/dosdevices/c:/Program Files/Common Files/Microsoft Shared/VC/msdia90.dll not found cp $DIRECTORY/CS6/DLL\ FILE/msdia90.dll $PREFIX/dosdevices/c:/Program Files/Common Files/Microsoft Shared/VC/. winetricks vcrun2010 open setup. exe using wine |