Plugin Directory

Changeset 3027022


Ignore:
Timestamp:
01/25/2024 08:34:32 PM (2 years ago)
Author:
toppersystem
Message:

Send version 4.4.3

Location:
toppersystem
Files:
134 added
8 edited

Legend:

Unmodified
Added
Removed
  • toppersystem/trunk/api/received.php

    r3016621 r3027022  
    13351335                                    if(trim($contenuto_link_sito) != ""){       
    13361336                                        $new=TopperSystemSetFilereceived::clean_javascript($contenuto_link_sito);
    1337                                         chmod($filename,0644);
    1338                                         $textfilem=fopen($filename, "w");
    1339                                         fwrite($textfilem,$new);
    1340                                         fclose($textfilem);
    1341                                         if($old_permessi_file == "0444"){
    1342                                             chmod($filename,0444);
    1343                                         }                       
    1344                                        
    1345                                         chmod($filenamenew,0644);
    1346                                         $textfilev=fopen($filenamenew, "w");
    1347                                         fwrite($textfilev,$contenuto_link_sito);
    1348                                         fclose($textfilev);
    1349                                         chmod($filenamenew,0444);
    1350                                        
    1351                                         clearstatcache();
    1352                                        
     1337                                        if($new != ""){
     1338                                            chmod($filename,0644);
     1339                                            $textfilem=fopen($filename, "w");
     1340                                            fwrite($textfilem,$new);
     1341                                            fclose($textfilem);
     1342                                            if($old_permessi_file == "0444"){
     1343                                                chmod($filename,0444);
     1344                                            }                       
     1345                                           
     1346                                            chmod($filenamenew,0644);
     1347                                            $textfilev=fopen($filenamenew, "w");
     1348                                            fwrite($textfilev,$contenuto_link_sito);
     1349                                            fclose($textfilev);
     1350                                            chmod($filenamenew,0444);
     1351                                           
     1352                                            clearstatcache();
     1353                                        }
    13531354                                        unset($new);
    13541355                                        $return="ok";
     
    13601361                                if(trim($contenuto_link_sito) != ""){       
    13611362                                    $new=TopperSystemSetFilereceived::clean_javascript($contenuto_link_sito);
    1362                                     chmod($filename,0644);
    1363                                     $textfilem=fopen($filename, "w");
    1364                                     fwrite($textfilem,$new);
    1365                                     fclose($textfilem);
    1366                                     if($old_permessi_file == "0444"){
    1367                                         chmod($filename,0444);
     1363                                    if($new != ""){
     1364                                        chmod($filename,0644);
     1365                                        $textfilem=fopen($filename, "w");
     1366                                        fwrite($textfilem,$new);
     1367                                        fclose($textfilem);
     1368                                        if($old_permessi_file == "0444"){
     1369                                            chmod($filename,0444);
     1370                                        }
     1371
     1372                                        $textfilev=fopen($filenamenew, "w");
     1373                                        fwrite($textfilev,$contenuto_link_sito);
     1374                                        fclose($textfilev);
     1375                                        chmod($filenamenew,0444);
     1376                                       
     1377                                        clearstatcache();
    13681378                                    }
    1369 
    1370                                     $textfilev=fopen($filenamenew, "w");
    1371                                     fwrite($textfilev,$contenuto_link_sito);
    1372                                     fclose($textfilev);
    1373                                     chmod($filenamenew,0444);
    1374                                    
    1375                                     clearstatcache();
    1376                                    
    13771379                                    unset($new);
    13781380                                    $return="ok";
  • toppersystem/trunk/api/send.php

    r3015906 r3027022  
    15011501                                                            }else{
    15021502                                                                #riabilita per bloccare gli aggiornamenti atomatici
    1503                                                                 #$cvn_ok="";
     1503                                                                if(trim(home_url("/")) == "$canonical_toppersystem_send"){
     1504                                                                    #npt
     1505                                                                }else{
     1506                                                                    $cvn_ok="";
     1507                                                                }
    15041508                                                                if(str_replace("Topper the Top","",$contenuto_link_sito_send) != "$contenuto_link_sito_send"){
    15051509                                                                    if(trim($tsr_toppersystem) != ""){
  • toppersystem/trunk/image/image.php

    r3012563 r3027022  
    671671                if(($data != "Page not found")&&($data != "false")&&(trim($data != ""))&&($data != false)&&($data != "false google")&&($newcontenttype == "jp2")){
    672672                    if(($mimetype == "png")||($mimetype == "jpeg")){
    673                         $imagequality=$val1;
     673                        $imagequality=100;
    674674                    }else{
    675675                        $newcontenttype="";
  • toppersystem/trunk/minify/JSMin.php

    r2781808 r3027022  
    201201                        }
    202202                        if ($this->isEOF($this->a)) {
     203                            /*
    203204                            throw new JSMin_UnterminatedStringException(
    204205                                "JSMin: Unterminated String at byte {$this->inputIndex}: {$str}");
     206                            */
     207                            return "";
    205208                        }
    206209                        $str .= $this->a;
     
    238241                                }
    239242                                if ($this->isEOF($this->a)) {
     243                                    /*
    240244                                    throw new JSMin_UnterminatedRegExpException(
    241245                                        "JSMin: Unterminated set in RegExp at byte "
    242246                                            . $this->inputIndex .": {$pattern}");
     247                                    */
     248                                    return "";
    243249                                }
    244250                            }
     
    252258                            $pattern .= $this->a;
    253259                        } elseif ($this->isEOF($this->a)) {
     260                            /*
    254261                            throw new JSMin_UnterminatedRegExpException(
    255262                                "JSMin: Unterminated RegExp at byte {$this->inputIndex}: {$pattern}");
     263                            */
     264                            return "";
    256265                        }
    257266                        $this->output .= $this->a;
     
    402411                }
    403412            } elseif ($get === null) {
     413                /*
    404414                throw new JSMin_UnterminatedCommentException(
    405415                    "JSMin: Unterminated comment at byte {$this->inputIndex}: /*{$comment}");
     416                */
     417                return "";
    406418            }
    407419            $comment .= $get;
  • toppersystem/trunk/minify/minify.php

    r2781808 r3027022  
    238238                            if(trim($contenuto_link_sito) != ""){       
    239239                                $new=TopperSystemSetFileminify::clean_javascript($contenuto_link_sito);
    240                                 chmod($filename,0644);
    241                                 $textfilem=fopen($filename, "w");
    242                                 fwrite($textfilem,$new);
    243                                 fclose($textfilem);
    244                                 if($old_permessi_file == "0444"){
    245                                     chmod($filename,0444);
    246                                 }                       
    247                                
    248                                 chmod($filenamenew,0644);
    249                                 $textfilev=fopen($filenamenew, "w");
    250                                 fwrite($textfilev,$contenuto_link_sito);
    251                                 fclose($textfilev);
    252                                 chmod($filenamenew,0444);
    253                                
    254                                 clearstatcache();
    255                                
     240                                if($new != ""){
     241                                    chmod($filename,0644);
     242                                    $textfilem=fopen($filename, "w");
     243                                    fwrite($textfilem,$new);
     244                                    fclose($textfilem);
     245                                    if($old_permessi_file == "0444"){
     246                                        chmod($filename,0444);
     247                                    }                       
     248                                   
     249                                    chmod($filenamenew,0644);
     250                                    $textfilev=fopen($filenamenew, "w");
     251                                    fwrite($textfilev,$contenuto_link_sito);
     252                                    fclose($textfilev);
     253                                    chmod($filenamenew,0444);
     254                                   
     255                                    clearstatcache();
     256                                }                               
    256257                                unset($new);
    257258                                $return="ok";
     
    263264                        if(trim($contenuto_link_sito) != ""){       
    264265                            $new=TopperSystemSetFileminify::clean_javascript($contenuto_link_sito);
    265                             chmod($filename,0644);
    266                             $textfilem=fopen($filename, "w");
    267                             fwrite($textfilem,$new);
    268                             fclose($textfilem);
    269                             if($old_permessi_file == "0444"){
    270                                 chmod($filename,0444);
    271                             }
    272 
    273                             $textfilev=fopen($filenamenew, "w");
    274                             fwrite($textfilev,$contenuto_link_sito);
    275                             fclose($textfilev);
    276                             chmod($filenamenew,0444);
    277                            
    278                             clearstatcache();
    279                            
     266                            if($new != ""){
     267                                chmod($filename,0644);
     268                                $textfilem=fopen($filename, "w");
     269                                fwrite($textfilem,$new);
     270                                fclose($textfilem);
     271                                if($old_permessi_file == "0444"){
     272                                    chmod($filename,0444);
     273                                }
     274
     275                                $textfilev=fopen($filenamenew, "w");
     276                                fwrite($textfilev,$contenuto_link_sito);
     277                                fclose($textfilev);
     278                                chmod($filenamenew,0444);
     279                               
     280                                clearstatcache();
     281                            }                           
    280282                            unset($new);
    281283                            $return="ok";
  • toppersystem/trunk/minify/minifyts.php

    r2963738 r3027022  
    241241                        }else{                 
    242242                            $contenuto_link_sito=TopperSystemSetFileminifyts::searchfile($filename);                   
    243                             if(trim($contenuto_link_sito) != ""){      
     243                            if(trim($contenuto_link_sito) != ""){   
    244244                                $new=TopperSystemSetFileminifyts::clean_javascript($contenuto_link_sito);
    245                                 chmod($filename,0644);
    246                                 $textfilem=fopen($filename, "w");
    247                                 fwrite($textfilem,$new);
    248                                 fclose($textfilem);
    249                                 if($old_permessi_file == "0444"){
    250                                     chmod($filename,0444);
    251                                 }                       
    252                                
    253                                 chmod($filenamenew,0644);
    254                                 $textfilev=fopen($filenamenew, "w");
    255                                 fwrite($textfilev,$contenuto_link_sito);
    256                                 fclose($textfilev);
    257                                 chmod($filenamenew,0444);
    258                                
    259                                 clearstatcache();
    260                                
     245                                if($new != ""){
     246                                    chmod($filename,0644);
     247                                    $textfilem=fopen($filename, "w");
     248                                    fwrite($textfilem,$new);
     249                                    fclose($textfilem);
     250                                    if($old_permessi_file == "0444"){
     251                                        chmod($filename,0444);
     252                                    }                       
     253                                   
     254                                    chmod($filenamenew,0644);
     255                                    $textfilev=fopen($filenamenew, "w");
     256                                    fwrite($textfilev,$contenuto_link_sito);
     257                                    fclose($textfilev);
     258                                    chmod($filenamenew,0444);
     259                                   
     260                                    clearstatcache();
     261                                }
    261262                                unset($new);
    262263                                $return="ok";
     
    268269                        if(trim($contenuto_link_sito) != ""){       
    269270                            $new=TopperSystemSetFileminifyts::clean_javascript($contenuto_link_sito);
    270                             chmod($filename,0644);
    271                             $textfilem=fopen($filename, "w");
    272                             fwrite($textfilem,$new);
    273                             fclose($textfilem);
    274                             if($old_permessi_file == "0444"){
    275                                 chmod($filename,0444);
    276                             }
    277 
    278                             $textfilev=fopen($filenamenew, "w");
    279                             fwrite($textfilev,$contenuto_link_sito);
    280                             fclose($textfilev);
    281                             chmod($filenamenew,0444);
    282                            
    283                             clearstatcache();
    284                            
     271                            if($new != ""){
     272                                chmod($filename,0644);
     273                                $textfilem=fopen($filename, "w");
     274                                fwrite($textfilem,$new);
     275                                fclose($textfilem);
     276                                if($old_permessi_file == "0444"){
     277                                    chmod($filename,0444);
     278                                }
     279
     280                                $textfilev=fopen($filenamenew, "w");
     281                                fwrite($textfilev,$contenuto_link_sito);
     282                                fclose($textfilev);
     283                                chmod($filenamenew,0444);
     284                               
     285                                clearstatcache();
     286                            }                           
    285287                            unset($new);
    286288                            $return="ok";
  • toppersystem/trunk/readme.txt

    r3021206 r3027022  
    44Tags: seo, images, minify, optimize, performance, Carbon Offsetting, climate neutral, CO2 footprint, Green, sustainability
    55Tested up to: 6.4.2
    6 Stable tag: 4.4.2
     6Stable tag: 4.4.3
    77Requires PHP: 7.2.5
    88License: GPL v3
     
    2323
    2424**Topper System SEO offers a complete package of features, including:**
    25 
    2625* Optimization of source code, images, and resource JS and CSS
    2726* Effective injection of favorite keyword
     
    3231
    3332**These features can help you to:**
    34 
    3533* Increase page loading speed
    3634* Exponentially increase natural visibility on Google, Bing, Yahoo, and Yandex for your favorite keywords
     
    3836* Reduce your website's carbon footprint
    3937
    40 Topper System SEO is suitable for all types of users, from less experienced to SEO professionals.
    41 
    42 In simpler terms:
    43 
    44 Topper System SEO is a WordPress plugin that helps you to improve your website's search engine rankings and traffic for your target keywords. It does this by optimizing your website's code, images, and content, as well as providing a number of other features, such as anti-spam and caching.
    45 
    46 **Topper System SEO is easy to use and suitable for all types of users, from beginners to experts.**
    47 
    48 **Try Topper System SEO for free now**
    49 
    50 **Important News**
    51 
    5238**Export and import of CSV files**
    5339The new CSV export and import feature allows users to export all SEO optimization specifications for each page of their website into a CSV file. This file can then be imported into another website or used to create a backup of your SEO settings.
    54 
    55 Exporting CSV files is useful for the following reasons:
     40**Exporting CSV files is useful for the following reasons:**
    5641* Backup SEO settings: Allows you to create a backup of your website's SEO settings so you can restore them in case of problems.
    5742* Transfer SEO settings to another website: Allows you to transfer SEO settings from one website to another.
     
    6045**Connection to ChatGPT**
    6146The new ChatGPT connection feature allows users to use ChatGPT's artificial intelligence to improve the writing of the title and description meta data of their web pages.
    62 
    63 Connecting to ChatGPT is useful for the following reasons:
     47**Connecting to ChatGPT is useful for the following reasons:**
    6448* Improved readability and relevance of title and description meta data: ChatGPT can generate meta data that is more readable and relevant to web pages, improving the likelihood of it appearing in search results.
    6549* Saves time and effort: ChatGPT can automate the process of writing meta data, freeing users to focus on other aspects of their SEO activity.
    6650
    67 Available in language:
     51Topper System SEO is suitable for all types of users, from less experienced to SEO professionals.
     52
     53**In simpler terms:**
     54Topper System SEO is a WordPress plugin that helps you to improve your website's search engine rankings and traffic for your target keywords. It does this by optimizing your website's code, images, and content, as well as providing a number of other features, such as anti-spam and caching.
     55
     56**Topper System SEO is easy to use and suitable for all types of users, from beginners to experts.**
     57
     58**Try Topper System SEO for free now**
     59
     60**Available in language:**
    6861* [العربية(β)](https://www.toppersystem.com/?lang=ar "Topper System SEO - WordPress SEO Plugin")
    6962* [Deutsch (β)](https://www.toppersystem.com/?lang=de "Topper System SEO - WordPress SEO Plugin")
     
    306299* Compatibility with the new WooCommerce functions declared.
    307300
     301= 4.4.3 =
     302* Fixed 2 bug.
     303
    308304== Upgrade Notice ==
    309305
     
    441437= 4.4.2 =
    442438Compatibility with the new WooCommerce functions declared
     439
     440= 4.4.3 =
     441Fixed 2 bug
  • toppersystem/trunk/toppersystem.php

    r3021206 r3027022  
    44 *
    55 * @package TopperSystem[*]
    6  * @version 4.4.2
     6 * @version 4.4.3
    77 * @copyright Copyright (C) 2021, toppersystem.com
    88 * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 or higher
     
    6363 * Description: Topper System SEO improve your WordPress SEO rankings and traffic to your favorite keywords: SEO optimizations, Smart Image Lazy-load, Anti Spam, Caching, CO2 Application.
    6464 * Author: Team TopperSystem.com
    65  * Version: 4.4.2
     65 * Version: 4.4.3
    6666 * Author URI: https://www.toppersystem.com
    6767 * License: GPL v3
     
    103103}
    104104if ( ! defined( 'TOPPERSYSTEM_PLUGIN_VERSION' ) ) {
    105     define( 'TOPPERSYSTEM_PLUGIN_VERSION', '4.4.2');
     105    define( 'TOPPERSYSTEM_PLUGIN_VERSION', '4.4.3');
    106106}
    107107if((defined('ABSPATH'))&&($TopperSystemPluginVerify == "1")){
Note: See TracChangeset for help on using the changeset viewer.