ZOO - Joomla Plugin

Moderator: Alex Dobrin

Locked
osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

ZOO - Joomla Plugin

Post by osyk » Sun Jan 23, 2011 9:05 am

Buna ziua,

Prenumele meu este Raoul.

Imi cer scuze ca va deranjez dar am intampinat niste probleme utilizand pluginul ZOO.

In primul rand, doresc sa fac aceste modificari deoarece observ ca google nu imi indexeaza paginile siteului meu, nici macar pagina index,cea principala.

[Rezolvat]
Astazi aveam linkurile in genul:
http://vipmovies.net/index.php?option=c ... Itemid=145
.. si le-am facut sa fie
http://vipmovies.net/index.php/actiune.html


[Problema]
Daca doresc sa vad un film, imi apare linkul astfel(exemplu):
http://vipmovies.net/index.php/categori ... egory_id=5

Ce doresc? Eu doresc sa scap de acel ?category_id=5 , si sa ramana doar jennifer-s-body.html
Daca se poate si de /item/
Linkul sa fie in genul: http://vipmovies.net/index.php/categori ... -body.html , chiar si http://vipmovies.net/index.php/horror/j ... -body.html .

[Problema]
Prima pagina arata oribil, nici un film nu este aranjat intr-o linie dreapta, ci toate dezordonate.Acum chiar daca mai adaug filme, nu mi le adauga.

As dori ca prima pagina sa arate ca aici:
http://www.yootheme.com/zoo/app-bundle/movie-database

Va multumesc anticipat pentru ajutorul acordat.

User avatar
remus24
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 241
Joined: Tue Mar 16, 2010 10:14 pm
Location: Romania
Contact:

Re: ZOO - Joomla Plugin

Post by remus24 » Sun Jan 23, 2011 9:45 am

Salut!
1. Site -> Global Connfiguration -> Seo Settings (toate Yes)
2. La clasa .zoo-item.list-h > ul > li din modules/mod_zooitem/tmpl/list-h/style.css adaugi

Code: Select all

width:200px;
O zi buna!
"A man is known by the silence he keeps." ~ Oliver Herford

MTrailer - Totul despre filme
http://www.mtrailer.ro

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Sun Jan 23, 2011 9:54 am

Scuza-ma ca te intreb dar " Use Apache mod_rewrite " ce face? restul erau toate Yes, .. vad ca trebuie sa fac din htaccess.txt - .htaccess

P.s.: Voi modifica imediat.

User avatar
remus24
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 241
Joined: Tue Mar 16, 2010 10:14 pm
Location: Romania
Contact:

Re: ZOO - Joomla Plugin

Post by remus24 » Sun Jan 23, 2011 9:58 am

Transforma

Code: Select all

http://vipmovies.net/index.php/categorii-filme/comedie/item/my-mom-s-new-boyfriend.html
in

Code: Select all

http://vipmovies.net/categorii-filme/comedie/item/my-mom-s-new-boyfriend.html
"A man is known by the silence he keeps." ~ Oliver Herford

MTrailer - Totul despre filme
http://www.mtrailer.ro

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Sun Jan 23, 2011 11:45 am

" # @version $Id: htaccess.txt 10492 2008-07-02 06:38:28Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section
"

.htaccess de mai sus este bun? Are vrun bug?
P.S: Functioneaza pe site, doar sa-mi confirmati va rog ca este bun.

Offtopic: remus24 merci frumos de ajutor.

Daca se mai poate, spune-mi si mie ce face " width:200px; ", si cum pot scapa de ?category_id=2 de la URL

User avatar
remus24
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 241
Joined: Tue Mar 16, 2010 10:14 pm
Location: Romania
Contact:

Re: ZOO - Joomla Plugin

Post by remus24 » Sun Jan 23, 2011 2:52 pm

Salut!
1. Codul din fisierul htaccess pe care l-ai pus este cel implicit cu care vine si joomla deci nu are cum sa aiba bug-uri.
2. Fara suparare invata html si css pt ca altfel nu vei putea sa faci nimic. Atributul width:200px; seteaza latimea clasei caruia ii este atribuit (in cazul tau .zoo-item.list-h > ul > li).
3. Incearca sa instalezi o extensie SEF -> http://extensions.joomla.org/extensions ... gement/sef

O zi buna!
"A man is known by the silence he keeps." ~ Oliver Herford

MTrailer - Totul despre filme
http://www.mtrailer.ro

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Sun Jan 23, 2011 3:58 pm

1. Cand am trimis fisierul din pc, mi l-a lasat de 0KB si a trebuit sa iau de pe net..si nu eram sigur ca ala e de la joomla, de aceea am intrebat.
2. Deocamdata invat C++ .. , o sa ma apuc si de html , css.. cu html am mai lucrat sa zic asa, cu css deloc.
3. O sa incerc.

.zoo-item.list-h > ul > li.width12 { width: 12.5%; }
.zoo-item.list-h > ul > li.width14 { width: 14.285%; }
.zoo-item.list-h > ul > li.width16 { width: 16.666%; }
.zoo-item.list-h > ul > li.width20 { width: 20%; }
.zoo-item.list-h > ul > li.width25 { width: 25%; }
.zoo-item.list-h > ul > li.width33 { width: 33.33%; }
.zoo-item.list-h > ul > li.width50 { width: 50%; }

Adaug " width:200px; " sub ultimul?
Adica:
.zoo-item.list-h > ul > li.width50 { width: 50%; }
width:200px;
Sau altundeva si cu .zoo-item.list-h > ul > li.width200

Merci fain.

User avatar
remus24
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 241
Joined: Tue Mar 16, 2010 10:14 pm
Location: Romania
Contact:

Re: ZOO - Joomla Plugin

Post by remus24 » Sun Jan 23, 2011 4:10 pm

Code: Select all

.zoo-item.list-h > ul > li {
	margin: 0px;
	padding: 0px;
	background: url(images/line_dotted_v.png) 0 0 repeat-y;
	float: left;
	overflow: hidden;
   width:200px;
}
"A man is known by the silence he keeps." ~ Oliver Herford

MTrailer - Totul despre filme
http://www.mtrailer.ro

Raton
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 132
Joined: Tue May 04, 2010 8:36 pm
Contact:

Re: ZOO - Joomla Plugin

Post by Raton » Thu Jan 27, 2011 7:28 pm

Pentru ZOO eu am cumparat AceSEF impreuna cu extensia pentru ZOO.
E singura extensie SEF care a mers fara probleme cu componenta asta. Sh404Sef (desi zoo are un plugin special facut pe el) imi genera url-uri foarte aiurea (toate contineau "item" sau "category"). Se pare ca acum exista un 3rd party plugin care ar functiona, dar nu ma mai intereseaza. Sunt ft multumit de AceSEF.
PM me for any Joomla related custom work.

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Fri Jan 28, 2011 7:32 am

Ai putea sa-mi dai si mie la share te rog frumos?Ms.

Raton
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 132
Joined: Tue May 04, 2010 8:36 pm
Contact:

Re: ZOO - Joomla Plugin

Post by Raton » Thu Feb 03, 2011 9:57 pm

cumpara componenta..este ieftina si iti scoti banii pe ea daca stii ce faci. Succes ;)

ps
are un download id, nu pot risca un spread, pentru ca implicit imi pierd toate actualizarile. Si oricum, dupa cum am spus, componenta asta chiar MERITA cumparata.
PM me for any Joomla related custom work.

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Thu Feb 03, 2011 10:05 pm

Aham.Problema e urmatoarea: Nu am card de credit, nu am paypal...:)Deaia doream...Orkm merci frum!Bafta:D

Raton
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 132
Joined: Tue May 04, 2010 8:36 pm
Contact:

Re: ZOO - Joomla Plugin

Post by Raton » Fri Feb 04, 2011 9:39 pm

Fa-ti.. o sa intampini dificultati daca n-ai card de credit pe net.. in primul rand, cum ti-ai platit hostul? prin mandat postal? :)) recomand ING pt. Romania.
PM me for any Joomla related custom work.

osyk
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Jan 23, 2011 8:40 am

Re: ZOO - Joomla Plugin

Post by osyk » Fri Feb 04, 2011 9:43 pm

Hostul a fost "cumparat" prin intelegeri... Domeniul plata prin SMS.

florinf
Joomla! Apprentice
Joomla! Apprentice
Posts: 13
Joined: Sat Apr 26, 2014 3:59 pm
Contact:

Re: ZOO - Joomla Plugin

Post by florinf » Sat Apr 26, 2014 4:06 pm

osyk wrote:Hostul a fost "cumparat" prin intelegeri... Domeniul plata prin SMS.
Am patit si eu asa ceva, recomand sa iti iei un host serios daca vrei sa te pui bine pe treaba si sa iti mearga website-ul ...

florinf
Joomla! Apprentice
Joomla! Apprentice
Posts: 13
Joined: Sat Apr 26, 2014 3:59 pm
Contact:

Re: ZOO - Joomla Plugin

Post by florinf » Fri Oct 31, 2014 7:24 am

florinf wrote:
osyk wrote:Hostul a fost "cumparat" prin intelegeri... Domeniul plata prin SMS.
Am patit si eu asa ceva, recomand sa iti iei un host serios daca vrei sa te pui bine pe treaba si sa iti mearga website-ul ...
Si merge bine daca folosesti cloudflare pe agressive caching cu un plus de securitate (reverse proxy).
A detine ceasuri barbatesti in ziua de astazi este foarte retro in mediul online https://ceasuri-shop.ro/


Locked

Return to “Romanian Forum”