目前分類:NetYea (112)

瀏覽方式: 標題列表 簡短摘要

網頁設計在架設了DNS後


該如何確定該網域是否被GOOGLE接管呢?


到該網址
https://www.whatsmydns.net/

輸入網域就能夠知道詳細內容了

網頁設計 DNS 搜檢器

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計
  1. *@tshopping.com.tw 20221222._domainkey.tshopping.com.tw
  2.  
複製代碼
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

前兩天收到中華電信HINET的電話
說某一網域被入侵,亂發信被揭發
今天客戶說寄到GMAIL的信所有寄不出去
查了一下,先到下面網址打入IPhttps://mxtoolbox.com
https://www.dnsbl.info/dnsbl-details.php?dnsbl=dnsbl.spfbl.net
伺服器被當垃圾信跳板 申請DNS IP反解 網頁設計

發現有被兩個單元列入黑名單
伺服器被當垃圾信跳板 申請DNS IP反解 網頁設計


問了谷歌後,只要在其他dnsbl或是CBL裡沒有紀錄就好

直接問中華電信的 "Spam小組" 有專線(02)2192-6022 直接打去問,完全都免費。
CBL:http://cbl.abuseat.org/lookup.cgi?ip=61.218.3.178&.submit=Lookup
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計

 

Cpanel WHM 若何封鎖PHP ERROR LOG 網

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()



還有個不是門徑的舉措就是

在每一個檔案頭上加

 

PHP錯誤Notice Use of undefined
PHP錯誤Notice Use of undefined

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

有利用過進度條的伴侶一定會覺得很不輕易
因為要從0~100讀取 鋪張時間
因檔案巨細也不知道這時候間讀寫的完嗎?
如這篇
Java Swing 若何使用進度

於是顛末批改
改成此方式
可哄騙DIALOG準確的抓到讀寫完成的時間
網頁設計

  1. processdialog.setTitle("Copying files to USB");
  2.                             processdialog.add(labelimg);
  3.                             processdialog.setLocation(400,250);
  4.                             processdialog.pack(); // Packs the dialog so that the JOptionPane can be seen
  5.                             processdialog.setVisible(true); // Shows the dialog
  6.                             new Thread(){
  7.                                     public void run(){網頁設計
  8.                                             try{
  9.                                                 Process process = null;網頁設計
  10.                                                 BufferedReader input = null;
  11.                                                 final Runtime runtime = Runtime.getRuntime();
  12.                                                 //extact tar for ext3 file
  13.                                                 String tarstring = "tar -xvpf /"+tarpath+"/"+cellValue+".tar -C "+extpatition+"/";
  14.                                                 process = runtime.exec(new String[]{"/bin/sh","-c",tarstring});
  15.                                                 InputStream stdout = process.getInputStream ();
  16.                                                 InputStreamReader osr = new InputStreamReader (stdout);
  17.                                                 BufferedReader obr = new BufferedReader (osr);
  18.                                                 process.waitFor();
  19.                                                
  20.                                                 Thread.sleep(2000);
  21.                                             }catch(Exception e){
  22.                                                     e.printStackTrace();
  23.                                             }finally{
  24.                                                     processdialog.dispose();
  25.                                             }
  26.                                     }
  27.                             }.start();
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

  1. dnf install git zlib-devel libuuid-devel libmnl gcc make git autoconf automake pkgconfig curl findutils
複製代碼
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

  1. RewriteCond %{SERVER_PORT} !^443$
  2. RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
複製代碼
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計

SEO 網頁優化 若何用 Google Search Con


網頁設計,網站架設 ,網路行銷,網頁優化,SEO - NetYea 網頁設計

從2020年5月入手下手
Google SEO增加了加強功能
從下列網址可知增添了那些功能
https://developers.google.com/search/docs/advanced/structured-data/search-gallery


SEO寫好今後,到以下網址測試是不是完成
https://search.google.com/test/rich-results?utm_campaign=devsite&utm_medium=jsonld&utm_source=article


測試網址
http://www.netyea.com/
SEO 網頁優化 若何用 Google Search ConSEO 網頁優化 若何用 Google Search Con

點選預覽就能夠看到下面圖片
SEO 網頁優化 若何用 Google Search Con

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

  1. var chart;
  2. $(function() {
  3.     chart = new Highcharts.Chart({
  4.         chart: {
  5.             renderTo: 'chart_combo' //关联页面元素div#id
  6.         },
  7.         title: {  //图表标题網頁設計
  8.             text: '2011年东北三大城市水果消费量统计图'
  9.         },
  10.         xAxis: { //x轴
  11.             categories: ['柑桔', '香蕉','苹果', '梨子'],  //X轴类别
  12.             labels:{y:18}  //x轴标签位置:距X轴下方18像素
  13.         },
  14.         yAxis: {  //y轴
  15.             title: {text: '消费量(万吨)'}, //y轴标题
  16.             lineWidth: 2 //基线宽度
  17.         },
  18.         tooltip: {
  19.             formatter: function() { //花式化鼠标滑向图表数据点时显示的提醒框
  20.                 var s;
  21.                 if (this.point.name) { // 饼状图
  22.                     s = '<b>' + this.point.name + '</b>: <br>' + this.y+ '万吨(' +  
  23. twoDecimal(this.percentage) + '%)';
  24.                 } else {
  25.                     s = '' + this.x + ': ' + this.y + '万吨';
  26.                 }
  27.                 return s;
  28.             }
  29.         },
  30.         labels: { //图表标签
  31.             items: [{
  32.                 html: '生果消费总量对比',
  33.                 style: {
  34.                     left: '48px',
  35.                     top: '8px'
  36.                 }
  37.             }]
  38.         },
  39.         exporting: {
  40.             enabled: false  //设置导出按钮不可用
  41.         },
  42.         credits: {  
  43.             text: 'helloweba.com',
  44.             href: 'http://www.helloweba.com'
  45.         },
  46.         series: [{ //数据列
  47.             type: 'column',
  48.             name: '长春',
  49.             data: [8.4, 9.8, 11.4, 15.6]
  50.         },
  51.         {
  52.             type: 'column',
  53.             name: '沈阳',
  54.             data: [9.2, 7.8, 10.2, 16.8]
  55.         },
  56.         {
  57.             type: 'column',
  58.             name: '哈尔滨',
  59.             data: [6.5, 9.4, 13.2, 18.6]
  60.         },
  61.         {
  62.             type: 'spline',
  63.             name: '平均值',
  64.             data: [8.03, 9, 11.6, 17]
  65.         },
  66.         {
  67.             type: 'pie', //饼状图
  68.             name: '生果消费总量',
  69.             data: [{
  70.                 name: '长春',
  71.                 y: 45.2,
  72.                 color: '#4572A7'  
  73.             },
  74.             {
  75.                 name: '沈阳',網頁設計
  76.                 y: 44,
  77.                 color: '#AA4643'  
  78.             },
  79.             {
  80.                 name: '哈尔滨',
  81.                 y: 47.7,
  82.                 color: '#89A54E'  
  83.             }],
  84.             center: [100, 80],  //饼状图坐标
  85.             size: 100,  //饼状图直径大小
  86.             dataLabels: {
  87.                 enabled: false  //不显示饼状图数据标签
  88.             }
  89.         }]
  90.     });
  91. });
複製代碼
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計

SQL短長的圖解 網頁設計

資料庫常常是有看沒有懂

圖解秒懂SQL語言

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

8.png (40 KB, 下載次數: 6)

Python 行使 OpenCV抓取相片中的面部數據 網頁設

文章出處

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計
scandir也算是蠻好用的一個函式,他的回傳值也一樣是Array,回傳值的第一項是「.」,就是今朝資料夾的意思,第二項是「..」也就是上一個資料夾,然則他沒設施像glob那樣指定到檔案格局,scandir的花式是:
  1. scandir($dir_address);
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

 


 

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

 

 

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

毛病訊息.stk500_getsync
毛病訊息.stk500_getsync
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x9f


1.USB 有無毗連。(看 Arduino 板子上的燈有無亮就能夠確認這點)
2.有無設定 Arduino 的驅動程式。

3.Arduino Board 的板型是否准確 (選擇 Arduino IDE 功能表中的 Tool/Board 確認板型)
4.COM port 設定是否准確。
選擇 Arduino IDE 功能表中的 Tool/Serial port 確認 port
您可以用裝配經管員看看 (Windows 當選 裝配辦理員/連接埠/),由於我的 Arduino-UNO 用 USB 摹擬為 COM11,是以我在 Tool/Serial port 必需選擇 COM11


5.最後是PROCESSOR是不是選取正確

文章出處:網頁設計,網站架設 ,網路行銷,網頁優化,SEO - NetYea 網頁設計

若是編譯直行時泛起以下訊息,就是電腦與 Arduino 板子沒法溝通

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

解鎖右鍵 Chrome 免任何外掛,用書籤一秒消弭,破解右鍵

解鎖右鍵 Chrome 免任何外掛,用書籤一秒消弭,破解右鍵解鎖右鍵 Chrome 免任何外掛,用書籤一秒消弭,破解右鍵

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

  1. <style>
  2.         html {
  3.             height: 100%;
  4.         }
  5.         
  6.         body {
  7.             background-image: url(background.jpg);
  8.             background-repeat: no-repeat;
  9.             background-attachment: fixed;
  10.             background-position: center;
  11.             background-size: cover;
  12.         }
  13.     </style>
複製代碼
文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計

ereg_replace()是個使用正則的replacestr_replace()
ereg_replace ( string $pattern , string $replacement , string $string ) : string
preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] ) : mixed
preg_replace()是今朝的保舉方案,必選參數3個,可選參數3個。根基上可以籠蓋 只不外是參數的具體用法分歧。返回值是基本上一致的。ereg_replace()
 PHP燒毀函數ereg_replace(),若何用preg_
PHP燒毀函數ereg_replace(),若何用preg_

文章出處


文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()

網頁設計

網頁設計 Ckeditor Ckfinder https 沒

改成

文章標籤

prassaxlpu5 發表在 痞客邦 留言(0) 人氣()