tr-opencart

     
avatar Şuanki Zaman: 12-19-2024, 09:57 PMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Slaş ve quot yazıları

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  Exor - Görüntüleme - Okunma  2621 - Yorum  3

Exorv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 11
Konular: 6
Katılma Tarihi: Jul 2013
Rep Puanı: 0
Teşekkürler: 0
1 Mesajına, 1 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 02-21-2015 10:18 AM

Merhaba
Bir spor sitesi açıyorum opencart 2.0 kullanıyorum. Bir sorunla karşılaştım ve nasıl çözülebilir bilmiyorum.
Themeforest sitesinden "Pav Sportshop Theme" temasını aldım.
Fakat düzenleme yaptığım yerlerde örneğin;
Bu olan kodu değiştirdiğimde yada yeni bir tane eklediğimde,
PHP Kod:
<li><class="facebook" href="https://www.facebook.com/groups/okanspor/"><class="fa fa-facebook"><span>Facebook<br></span></i></a></li

Kodda bu şekilde quot lar üst tırnaklar çıkıyor. Bu durum olunca da resimleri göstermiyor.
PHP Kod:
<li><class="\&quot;facebook\&quot;" href="\&quot;https://www.facebook.com/groups/okanspor/\&quot;"><class="\&quot;fa" fa-facebook="" stack\"=""><span>Facebook<br></span></i></a></li> 

Bu durumu nasıl çözebilirim. Forumda aramayı denedim fakat sorunun türünü çözüp de arama bölümüne ne yazacağımı bilemedim.
Alıntı Yaparak Cevapla
Paylaş!
Exorv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 11
Konular: 6
Katılma Tarihi: Jul 2013
Rep Puanı: 0
Teşekkürler: 0
1 Mesajına, 1 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 02-22-2015 02:49 AM
Bunun bir çözümü yok mu acaba?
Alıntı Yaparak Cevapla
Paylaş!
ormenommv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 1
Konular: 0
Katılma Tarihi: Apr 2015
Rep Puanı: 0
Teşekkürler: 0
1 Mesajına, 1 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 04-08-2015 04:38 PM
Az önce ben de bu problemle karşılaştım.

Karşılaşılan problemin çözümü magic quotes denen olayla alakalı. Ve yapılacak işlem basit bir .htaccess düzenlemesi ile çözülüyor.

.htaccess dosyasını herhangi bir text editör ile açın ve son satırına

Kod:
php_flag magic_quotes_gpc Off
php_value magic_quotes_gpc Off

yapıştırın.

Eğer magic_quotes satırı var ise

Kod:
php_flag magic_quotes_gpc On
php_value magic_quotes_gpc On

satırı alttaki ile değiştirin.

Kod:
php_flag magic_quotes_gpc Off
php_value magic_quotes_gpc Off

Çözüm budur. Kolay gelsin.
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: artalyans
Shuqruv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 5
Konular: 1
Katılma Tarihi: May 2015
Rep Puanı: 0
Teşekkürler: 0
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 11-23-2015 05:11 PM
konuyu hortlatıyorum ama; bu yöntem çözüm olmadı.

iframe ile pdf dosyası çekmeye çalışıyorum.

örneğin kodumuz bu..

Kod:
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fwww.zafer.org.tr%2Fdownloads%2Fdestekler%2Fhazine_tesvik​ler.pdf&embedded=true" width="600" height="780" style="border: none;"></iframe>

ekleyip kaydet dediğimizde kodu şu şekle dönüşüyor...

Kod:
<iframe src="\&quot;http://docs.google.com/viewer?url=http%3A%2F%2Fwww.zafer.org.tr%2Fdownloads%2Fdestekler%2Fhazine_tesvik​ler.pdf&amp;embedded=true\&quot;" width="\&quot;600\&quot;" height="\&quot;780\&quot;" style="\&quot;border:" none;\"=""></iframe>


.htaccess ise şu şekilde;


Kod:
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing
Options -Indexes

# Prevent Direct Access to files
<FilesMatch "(?i)((\.tpl|\.ini|\.log|(?<!robots)\.txt))">
Order deny,allow
Deny from all
</FilesMatch>

# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

php_flag magic_quotes_gpc Off
php_value magic_quotes_gpc Off

### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200

# 7. disable open_basedir limitations
# php_admin_value open_basedir none
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Slaş ve quot yazıları Konusunun Linki Direk Link
Slaş ve quot yazıları Konusunun HTML Kodu HTML Link
Slaş ve quot yazıları Konusu BBCode Linki BBCode Link
Slaş ve quot yazıları Konusunu Paylaş Sosyal Paylaş

Slaş ve quot yazıları indir, Slaş ve quot yazıları Videosu, Slaş ve quot yazıları online izle, Slaş ve quot yazıları Bedava indir, Slaş ve quot yazıları Yükle, Slaş ve quot yazıları Hakkında, Slaş ve quot yazıları nedir, Slaş ve quot yazıları Free indir, Slaş ve quot yazıları oyunu, Slaş ve quot yazıları download


Forum Atla: