duminică, 19 iunie 2016

Image search

Am avut de multe ori nevoia să găsesc o poză pe net. Fie că poza mea nu avea calitatea necesară, fie că avea copyright pe ea, fie că pur și simplu voiam să găsesc și alte referințe...
Un prim loc unde am găsit azi răspuns:
https://www.tineye.com/

Voi mai săpa și voi mai adăuga și aște informații sau site-uri.

marți, 15 iulie 2014

Site - practec - modificare si optimizare

La Practec folosesc JA Berains

Vizualizare latin extins - implicit este off
Rezolvare:
1. Open the /etc/assets.xml file
2. Replace:


Code:
 <stylesheets>
  <file>http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,700,500italic,700italic,900,900italic</file>
 </stylesheets>
with this
Code:
 <stylesheets>
  <file>http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,700,500italic,700italic,900,900italic&amp;subset=latin-ext,latin</file>
 </stylesheets>
Very important: use &amp; instead only & !

 Sloganul este in doua pozitii
Rezolvare:
Hi,

In the case, pls go to administrator -> template -> template JA Beranis manager. Go to tab "layout"

Click image for larger version

Name: 6915565558.png
Views: 15
Size: 29.0 KB
ID: 28651

You can assign other modules to this position.
Ori
Open file "templates/ja_beranis/tpls/blocks/footer.php" and remove code

Code:
<?php if ($this->countModules('slogan')) : ?>
<!-- SLOGAN-->
<section class="container t3-slogan animate-text content-bottom">
 <div class="row">
   <div class="span12">
   <jdoc:include type="modules" name="<?php $this->_p('slogan') ?>" style="raw" />
  </div>
  </div>
</section>
<!-- //SLOGAN -->
<?php endif ?>

miercuri, 5 martie 2014

Stop Loading Automatic Scripts in Joomla 2.5

Problema de optimizare a vitezei site-ului.

Javascript-ul trebuie sa se incarce asincron in pagina - http://gtmetrix.com/defer-parsing-of-javascript.html

Pentru asta, trebuie ca scripturile sa aiba forma <script asyn>. Ideea este ca trebuie introduse in momentul in care se genereaza documentul.
Pentru asta, aflam informatii de aici:

http://stackoverflow.com/questions/13758204/stop-loading-automatic-scripts-in-joomla-2-5

adica
Aici se opreste incarcarea mootools.js, eu nu am nevoie de asta.
accepted
I would not recommend you to change the core files of Joomla.But if you really need to that then you can try this:
Step to disable the preloaded script file in joomla template.
Step one: Using your favorite file editor, open for edit:
/libraries/joomla/document/html/renderer/head.php
Step one: Find this code at line 151 and update it to include the code with this :
// Generate script file links
foreach ($document->_scripts as $strSrc => $strAttr)
{
    // Code to disable mootools for your site (still loads it for your admin)

    $ex_src = explode("/",$strSrc);
    $js_file_name = $ex_src[count($ex_src)-1];
    $js_to_ignore = array("mootools-core.js","mootools-more.js","core.js","caption.js");
    if( in_array($js_file_name,$js_to_ignore) AND substr_count($document->baseurl,"/administrator") < 1 AND $_GET['view'] != 'form')
        continue;

    $buffer .= $tab . '<script src="' . $strSrc . '"';
    if (!is_null($strAttr['mime']))
    {
        $buffer .= ' type="' . $strAttr['mime'] . '"';
    }
    if ($strAttr['defer'])
    {
        $buffer .= ' defer="defer"';
    }
    if ($strAttr['async'])
    {
        $buffer .= ' async="async"';
    }
    $buffer .= '</script>' . $lnEnd;
}
After saving the changes above, clear the cache that you have set and test your Joomla website and your Joomla Admin Dashboard. If you view the source code,all the predefind files are not there.
Or
You can try like this to hide it from index.php in template. Just put this line before the <jdoc:include type="head" /> and make necessary changes as needed to the scripts.
<?php 
    $search = array('mootools-more.js', 'caption.js');
    // remove the js files
    foreach($this->_scripts as $key => $script) {
        foreach($search as $findme) {
            if(stristr($key, $findme) !== false) {
                unset($this->_scripts[$key]);
            }
        }
    }
?>

joi, 7 noiembrie 2013

FS Celsius w370 - instalare W7

Pentru workstation de la Fujitsu nu ne lasa sa instalam windows 7 decat cu AHCI, pentru asta trebuie cautat in BIOS si trecem pe AHCI. Trebuie vazut daca la viitoarea reinstalare ma lasa sa instalez si in mod normal FS Celsius w370 - instalare W7

miercuri, 24 iulie 2013

Enable Duplex printing in W7 on Xerox 5500DN printer

http://forum.support.xerox.com/t5/Printing/Global-Print-Driver-Phaser-3635-Cannot-Duplex/td-p/2078

I suppose you share the same problem in different products.
I have tested the Global Print Driver (GPD) PCL6 and I am able to print duplex.

After you install the GPD (Pointing to the correct IP address) make you go to properties > Options > Device Options > Configuration and select the correct printer model. Very likely what you have is "Basic Print Mode" and you need to specify your printer. Make sure you click Apply and ok to close the Printer wizard.

If this does not solve your problem you can also try to go to Properties > Configuration and disable Bi-Di. After you hit apply and OK you should have Bi-Di disable wich allow you to enable and configure the printer options manually. ( Driver Properties > Configuration > Instalable Options.

@hirize,
In your case please consider all this process with the GPD PS driver. Due to the nature of you printer. Very likely you will not be able to change the print mode for this phaser on the PCL6 Driver.

luni, 22 aprilie 2013

Joomfish pentru J2.5 - pozitionarea steagurilor

La templateul it_university, alegem modulul JoomFish language selector



  •  
Modificam la /var/www/html/one/modules/mod_jflanguageselection/tmpl
mod_jflanguageselection.css
la linia 113
.rawimages {
    text-align: center;
    margin-top: -8px;
pentru pozitionarea corecta a steagurilor.

Atentie! trebuie sters cache-ul ca sa se vada schimbarea