May 4, 2011

No post added | CyberSEO Pro | Support Forum

Avatar

Lost password?
Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

sp_TopicIcon
No post added
Topic Rating: 0 Topic Rating: 0 Topic Rating: 0 Topic Rating: 0 Topic Rating: 0 Topic Rating: 0 (0 votes) 
October 28, 2023
8:27 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

Hi.

This is my log:

[removed]

After this the page stop loading and no post its added to website. Can u help me ? What can be the problem ?

October 28, 2023
9:09 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

I have removed your log because it contains sensitive information such as your host IP. However, I think I know what the problem is. You are making a lot of requests to the OpenAI GPT API. Each such request is time consuming, so your server is simply running out of time. I would suggest you to increase this value: Login to see this link

Please note that it may not be enough and your server configuration may ignore it. In this case you have to change it manually in your php.ini file: Login to see this link

October 28, 2023
9:22 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

i have already setup in /etc/php/8.1/apache2/php.ini and /etc/php/8.1/cli/php.ini

max_execution_time = 0
max_input_time = -1

and also in General Settings / Max execution time = 0

 

any other suggestion ?

October 28, 2023
9:40 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

I would recommend checking the logging settings in php.ini (focus on error_reporting, display_errors, log_errors, error_log) to ensure that all errors are being recorded. Additionally, you might want to look at the web server logs (Apache, Nginx, etc.) as they might contain some useful information.

Could you please confirm whether the script consistently stops at the same point every time? I mean the CyberSEO Pro’s Syndicator Log, so it would be helpful to know if the termination occurs at the same operation each time.

Additionally, are you using the “Thumbnail source size” image filtering? If so, you may want to consider updating the gdlib PHP library, especially since the script stalled during image processing. There have been cases where the getimagesize function causes problems on certain servers, and updating the library could potentially fix this. As odd as it may sound, sometimes issues with getimagesize can be resolved by switching the PHP mode from FastCGI to CGI. It’s worth a try if you’re experiencing problems.

October 28, 2023
9:48 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

where i can send i server details to login and check ? i dont have any error …. just i give in the first post. in syndicator log yes, every time in same point.

October 28, 2023
9:50 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

Unfortunately, I can only help you with the script, not with your server. You didn’t answer the question above. Are you using the image filtering “Thumbnail source size”? Also, have you (your host admin) tried switching PHP to CGI mode?

October 28, 2023
9:56 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

I was trying diffrent image settings, same result of all.  

Also, have you (your host admin) tried switching PHP to CGI mode?
R: no. how can i do that? need additional settings?

October 28, 2023
10:03 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

To switch PHP from FastCGI to CGI mode, you’d usually need to have administrative access to your web server. The exact steps can vary depending on your web server software (like Apache or Nginx) and hosting setup. Here are some general guidelines:

  1. You may need to edit your httpd.conf file and change the PHP handler from FastCGI to CGI. Look for a line like AddHandler php7-fcgi .php and change it to AddHandler cgi-script .php.
  2. You’ll have to update your Nginx configuration file. Replace fastcgi_pass with cgi_pass in the relevant server block.
  3. If you have a hosting control panel like cPanel, ISP Manager etc. there might be an option to switch PHP versions and modes.
  4. If you’re unsure, it’s best to contact your hosting support for detailed instructions specific to your setup.

Based on the Syndicator Log, it appears that the issue occurs during the image upload and processing on the server. Specifically, the getimagesize function seems to be the point of failure. This is not a bug in CyberSEO Pro but rather a server-side issue. It could be due to the gdlib library installed on your server not supporting this particular image (it could even be corrupted), or it could be a lack of memory, or it could be related to the FastCGI mode. Therefore, it’s worth trying to switch to CGI mode to see if that resolves the issue.

October 28, 2023
10:07 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

I am using Ubuntu 22.04.3 LTS with apache. Can u give me a tutorial for cgi mode?

Just updated php lib and gd, same result…

October 28, 2023
10:14 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline
10sp_Permalink sp_Print
0

To switch from FastCGI to CGI mode on Apache running on Ubuntu, you can follow these steps:

Install the CGI module if it’s not already installed:

Login to see the code

Edit Apache Configuration: Open your Apache configuration file in a text editor. The file is generally located at /etc/apache2/apache2.conf or /etc/apache2/sites-available/000-default.conf.

Find the <Directory> or <VirtualHost> block for your site and change the handler for PHP files from FastCGI to CGI.

Replace this:

Login to see the code

With this:

Login to see the code

Restart Apache to apply the changes:

Login to see the code

Please make sure to backup your configuration files before making any changes.

You mentioned that you’ve updated gdlib, but the issue persists. This further suggests that the issue might be with how PHP is running, so switching to CGI mode could potentially solve it. If this doesn’t work, the problem is likely deeper and may require more advanced troubleshooting and assistance from your host administrator.

October 28, 2023
10:35 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

problem persist… i am the owner. server is installed by me.

this is revista-antreprenorului.conf 

ServerName revista-antreprenorului.ro
ServerAlias Login to see this link
ServerAdmin Login to see this link
DocumentRoot “/home/website/revista-antreprenorului.ro/public_html”

ErrorLog ${APACHE_LOG_DIR}/revista-antreprenorului.ro.error.log
CustomLog ${APACHE_LOG_DIR}/revista-antreprenorului.ro.access.log combined

Options FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
# Order allow,deny
# Allow from all
AddHandler cgi-script .php
Options +ExecCGI

ServerName revista-antreprenorului.ro
ServerAlias Login to see this link
ServerAdmin Login to see this link
DocumentRoot “/home/website/revista-antreprenorului.ro/public_html”

ErrorLog ${APACHE_LOG_DIR}/revista-antreprenorului.ro.error.log
CustomLog ${APACHE_LOG_DIR}/revista-antreprenorului.ro.access.log combined

SSLEngine on
SSLCertificateFile /home/website/revista-antreprenorului.ro/revista-antreprenorului.pem
SSLCertificateKeyFile /home/website/revista-antreprenorului.ro/revista-antreprenorului.key

<FilesMatch “\.(cgi|shtml|phtml|php)$”>
SSLOptions +StdEnvVars

SSLOptions +StdEnvVars

Options FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
AddHandler cgi-script .php
Options +ExecCGI

# Order allow,deny
# Allow from all

phpinfo() here Login to see this link

is all good ? 

October 28, 2023
10:55 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline
12sp_Permalink sp_Print
0

The issue you’re experiencing seems more related to server-side configurations rather than the script itself. While I specialize in coding, server administration isn’t my forte.

To pinpoint whether getimagesize is causing the issue, you can disable the image-saving feature within the CyberSEO Pro plugin and opt to hotlink the images instead. This should help us determine if getimagesize is the root of the problem.

If you continue to experience issues, I’d strongly recommend consulting a professional server administrator for a more in-depth troubleshooting. It may require specialized adjustments to your server settings, which are beyond the scope of typical script debugging. Only an admin with full access to the server would be able to resolve issues of this nature effectively.

October 28, 2023
11:28 pm
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline
13sp_Permalink sp_Print
0

with image save disabled:

 

[28-10-23 09:25:05] Processing a new post: Login to see this link
[28-10-23 09:25:05] Checking for duplicate by link and title
[28-10-23 09:25:06] Trying to extract full text article with Full-Text RSS script
[28-10-23 09:25:06] Done
[28-10-23 09:25:07] Apply post filtering.
[28-10-23 09:25:07] Done.
[28-10-23 09:25:07] Generating OpenAI GPT (gpt-3.5-turbo-16k) content for: Rewrite the title in an informative style in romanian language with max 50 characters.: Vești bune pentru această categorie de persoane! Vor putea primi indemnizație și alte beneficii de la stat – Bugetul.ro
[28-10-23 09:25:11] Success
[28-10-23 09:25:12] Generating OpenAI GPT (gpt-3.5-turbo-16k) content for: Analyze the following text and write a informative style article in romanian language based on the information you have found. Use rank math seo rules and create subheadings with <h2> html tag:

Beneficii și indemnizații pentru această categorie! – Bugetul.ro
Vești importante pentru mii de persoane! Statul român le vine în ajutor cu noi beneficii.

Recent, Camera Deputaţilor a adoptat un proiect de lege care prevede posibilitatea acordării de concediu de risc maternal şi indemnizaţie şi persoanelor asigurate facultativ.

S-au înregistrat 272 de voturi „pentru”.

Propunerea legislativă modifică art. 10 alin. (7) şi art. 31 alin. (1) din Ordonanţa de urgenţă a Guvernului nr.158/2005 privind concediile şi indemnizaţiile de asigurări sociale de sănătate, în sensul acordării dreptului la concediu de risc maternal şi persoanelor asigurate facultativ.
Ce persoane pot beneficia de noile prevederi
Conform legii, persoanele asigurate facultativ sunt: a) asociaţi, comanditari sau acţionari; b) administratori sau manageri care au încheiat contract de administrare ori de management; c) membri ai asociaţiei familiale; d) persoane autorizate să desfăşoare activităţi independente.

Prin derogare, de dreptul la concediul de risc maternal şi indemnizaţie beneficiază şi persoanele asigurate facultativ. Concediul şi indemnizaţia de risc maternal se acordă fără condiţie de stagiu de asigurare, prevede proiectul, potrivit agerpres.ro.
De asemenea, pentru aceste persoane, pentru acordarea concediului de risc maternal, „baza de calcul al indemnizaţiilor de asigurări sociale o constituie media veniturilor lunare asigurate, înscrise în contractul de asigurare încheiat„.

Camera Deputaţilor este for decizional pentru acest proiect legislativ.
[28-10-23 09:27:08] Success
[28-10-23 09:27:08] Processing post templates
[28-10-23 09:27:09] Generating OpenAI GPT (gpt-3.5-turbo-16k) content for: Write a SEO Friendly meta description within 155 characters including Above Focus Keywords in romanian language for the following article to rank it in Google : Beneficii și indemnizații pentru această categorie! – Bugetul.roVești importante pentru mii de persoane! Statul român le vine în ajutor cu noi beneficii.Recent, Camera Deputaților a adoptat un proiect de lege care prevede posibilitatea acordării de concediu de risc maternal și indemnizație și persoanelor asigurate facultativ. Modificări în legislație Propunerea legislativă modifică art. 10 alin. (7) și art. 31 alin. (1) din Ordonanța de urgență a Guvernului nr.158/2005 privind concediile și indemnizațiile de asigurări sociale de sănătate, în sensul acordării dreptului la concediu de risc maternal și persoanelor asigurate facultativ. Persoanele care pot beneficia de noile prevederi Conform legii, persoanele asigurate facultativ sunt următoarele:a) asociați, comanditari sau acționari;b) administratori sau manageri care au încheiat contract de administrare ori de management;c) membri ai asociației familiale;d) persoane autorizate să desfășoare activități independente.Prin derogare, de dreptul la concediul de risc maternal și indemnizație beneficiază și persoanele asigurate facultativ. Concediul și indemnizația de risc maternal se acordă fără condiție de stagiu de asigurare, potrivit proiectului. Baza de calcul al indemnizațiilor De asemenea, pentru aceste persoane, pentru acordarea concediului de risc maternal, “baza de calcul al indemnizațiilor de asigurări sociale o constituie media veniturilor lunare asigurate, înscrise în contractul de asigurare încheiat”.Camera Deputaților este for decizional pentru acest proiect legislativ. Această modificare legislativă aduce beneficii importante pentru persoanele asigurate facultativ, oferindu-le posibilitatea de a beneficia de concediu de risc maternal și indemnizație în cazul în care se încadrează în categoriile menționate anterior. Acest lucru este deosebit de util pentru persoanele care desfășoară activități independente sau care fac parte dintr-o asociație familială. Prin eliminarea condiției de stagiu de asigurare, se asigură faptul că aceste persoane vor putea beneficia de aceste drepturi indiferent de perioada în care au fost asigurate facultativ.Baza de calcul al indemnizațiilor este reprezentată de media veniturilor lunare asigurate, ceea ce se traduce într-un beneficiu echitabil pentru aceste persoane. Astfel, ele vor putea primi o indemnizație care să reflecte veniturile pe care le-au avut în timpul perioadei de asigurare.Această inițiativă legislativă demonstrează o preocupare din partea statului român pentru sprijinirea categoriilor mai vulnerabile de persoane și asigurarea unor condiții mai bune pentru acestea în cazul unor evenimente precum riscul maternal. Prin acordarea concediului de risc maternal și a indemnizației corespunzătoare, se asigură un suport financiar pentru aceste persoane în perioadele în care sunt mai expuse unor riscuri de sănătate legate de maternitate.În concluzie, adoptarea acestui proiect de lege reprezintă un pas important în asigurarea drepturilor și beneficiilor pentru persoanele asigurate facultativ. Această măsură va contribui la asigurarea unei protecții sociale mai bune și la creșterea calității vieții pentru această categorie de persoane..
[28-10-23 09:27:17] Success
[28-10-23 09:27:17] Generating OpenAI GPT (gpt-3.5-turbo-16k) content for: Analyze the article below and generate 3 concrete, comma-delimited keywords that represent the main topic(s) or visually significant elements in the text. The generated keywords may not contain abstract concepts, proper nouns (including names and brands), or numbers:

Beneficii și indemnizații pentru această categorie! – Bugetul.roVești importante pentru mii de persoane! Statul român le vine în ajutor cu noi beneficii.Recent, Camera Deputaților a adoptat un proiect de lege care prevede posibilitatea acordării de concediu de risc maternal și indemnizație și persoanelor asigurate facultativ. Modificări în legislație Propunerea legislativă modifică art. 10 alin. (7) și art. 31 alin. (1) din Ordonanța de urgență a Guvernului nr.158/2005 privind concediile și indemnizațiile de asigurări sociale de sănătate, în sensul acordării dreptului la concediu de risc maternal și persoanelor asigurate facultativ. Persoanele care pot beneficia de noile prevederi Conform legii, persoanele asigurate facultativ sunt următoarele:a) asociați, comanditari sau acționari;b) administratori sau manageri care au încheiat contract de administrare ori de management;c) membri ai asociației familiale;d) persoane autorizate să desfășoare activități independente.Prin derogare, de dreptul la concediul de risc maternal și indemnizație beneficiază și persoanele asigurate facultativ. Concediul și indemnizația de risc maternal se acordă fără condiție de stagiu de asigurare, potrivit proiectului. Baza de calcul al indemnizațiilor De asemenea, pentru aceste persoane, pentru acordarea concediului de risc maternal, “baza de calcul al indemnizațiilor de asigurări sociale o constituie media veniturilor lunare asigurate, înscrise în contractul de asigurare încheiat”.Camera Deputaților este for decizional pentru acest proiect legislativ. Această modificare legislativă aduce beneficii importante pentru persoanele asigurate facultativ, oferindu-le posibilitatea de a beneficia de concediu de risc maternal și indemnizație în cazul în care se încadrează în categoriile menționate anterior. Acest lucru este deosebit de util pentru persoanele care desfășoară activități independente sau care fac parte dintr-o asociație familială. Prin eliminarea condiției de stagiu de asigurare, se asigură faptul că aceste persoane vor putea beneficia de aceste drepturi indiferent de perioada în care au fost asigurate facultativ.Baza de calcul al indemnizațiilor este reprezentată de media veniturilor lunare asigurate, ceea ce se traduce într-un beneficiu echitabil pentru aceste persoane. Astfel, ele vor putea primi o indemnizație care să reflecte veniturile pe care le-au avut în timpul perioadei de asigurare.Această inițiativă legislativă demonstrează o preocupare din partea statului român pentru sprijinirea categoriilor mai vulnerabile de persoane și asigurarea unor condiții mai bune pentru acestea în cazul unor evenimente precum riscul maternal. Prin acordarea concediului de risc maternal și a indemnizației corespunzătoare, se asigură un suport financiar pentru aceste persoane în perioadele în care sunt mai expuse unor riscuri de sănătate legate de maternitate.În concluzie, adoptarea acestui proiect de lege reprezintă un pas important în asigurarea drepturilor și beneficiilor pentru persoanele asigurate facultativ. Această măsură va contribui la asigurarea unei protecții sociale mai bune și la creșterea calității vieții pentru această categorie de persoane…
[28-10-23 09:27:21] Success
[28-10-23 09:27:21] Searching on Google Images for “beneficii, indemnizații, concediu de risc maternal”
[28-10-23 09:27:22] Done
[28-10-23 09:27:23] Trying to generate post thumbnail from the first post image
[28-10-23 09:27:23] Setting the post meta description for Yoast SEO: <p>Bugetul.ro – Beneficii și indemnizații pentru această categorie! Statul român vine în ajutor cu noi beneficii pentru persoanele asigurate facultativ. Află mai multe despre concediul de risc maternal și indemnizație în acest articol.</p>
[28-10-23 09:27:23] Apply Spintax
[28-10-23 09:27:23] Inserting a new post into the WordPress database
[28-10-23 09:27:35] Done
[28-10-23 09:27:37] The post thumbnail is now handled by FIFU
[28-10-23 09:27:37] New post title: Beneficii și indemnizații pentru această categorie! – Bugetul.ro
[28-10-23 09:27:37] New post ID: 798

[28-10-23 09:27:37] Processing a new post: Login to see this link

 

it was stopped again.

October 28, 2023
11:48 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

Since the script now stops at a different point, it’s clear that this is not related to a specific function like getimagesize or a bug in the script itself. This pattern strongly suggests that there’s a timeout or some other time-based constraint affecting the script’s execution. Below are several settings where such constraints can be configured:

Apache Settings

1. Timeout: This setting in Apache’s httpd.conf or equivalent config file specifies the number of seconds before the server will close an idle connection.

Login to see the code

2. KeepAliveTimeout: Determines how long the server will wait for subsequent requests on a persistent connection.

Login to see the code

Proxy Settings

If you’re using a proxy server like Nginx, look for settings such as proxy_connect_timeout, proxy_read_timeout, and proxy_send_timeout.

FastCGI Settings

If you’re using FastCGI, you might find timeout settings in its config file like so:

Login to see the code

Database Settings

If the script interacts with a database, there may be a database connection timeout setting to consider.

Check these settings to make sure that none of them are causing your script to exit prematurely. If the problem persists, you may need to contact a server administrator with full access to the server for a more detailed diagnosis.

In addition to the server settings mentioned above, you should also check the following settings within the CyberSEO Pro plugin:

  1. Ensure that “Max execution time” is set to a high value, for example, 1000. This will help rule out any limitations within the plugin itself.
  2. Enable the “Enable debug mode” checkbox. Turning this on will help you be certain that there are no errors in the plugin’s code that could be causing the issue.

By checking these additional settings, you can further isolate the root cause of the problem.

October 29, 2023
12:03 am
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

I just remembered another important setting that could be affecting the script’s execution time. If you’re running Apache with mod_fcgid, there’s a directive called FcgidIOTimeout that you might need to look into. This directive sets the maximum time your FastCGI process has to handle a single request.

Here’s how you can set it:

Login to see the code

You can place this in your Apache configuration file. The value 120 is in seconds, so you can adjust it according to your needs. It might be worth checking if this setting is causing your script to terminate prematurely.

Since the reasons for the script’s termination by the server can vary, you may need to check different log files to pinpoint the issue. Here are some logs where you might find relevant information:

  1. Apache Error Log: If you’re using Apache, check the log files usually located in directories like /var/log/apache2/ or /var/log/httpd/.
  2. Nginx Error Log: If you’re using Nginx, look into /var/log/nginx/error.log.
  3. FastCGI Logs: If you’re using FastCGI, logs might be in a separate directory or included with the web server logs.
  4. System Logs: In rare cases, you might find information in system logs like /var/log/syslog on Linux-based systems.
  5. Database Logs: If the issue could be related to database queries, your DBMS logs (e.g., MySQL, PostgreSQL) might also have useful information.
  6. Custom Application Logs: Don’t forget to check any custom logging mechanisms that your application might have.

Please note that the paths can vary depending on your server configuration and operating system. Keep in mind that my expertise in server configurations is limited, so these are just the options that I’m aware of.

I’m a programmer and my expertise in server configurations is fairly limited. I’m providing the options that I’m aware of, but please keep in mind that server administration is not my specialty.

October 29, 2023
12:15 am
Avatar
adrian_cra
Member
Members
Forum Posts: 8
Member Since:
October 26, 2023
sp_UserOfflineSmall Offline

where is locate the log of debug mode? or how can i see it?

as i told i was unlimit the max execution time from php.ini

October 29, 2023
12:17 am
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

The debug mode in CyberSEO Pro should output messages directly on the plugin’s settings page in the WordPress admin panel. If you’ve enabled “Debug Mode,” any errors or warnings should appear there.

Regarding the max_execution_time, even if it’s set to unlimited in php.ini, there might be other configurations on your server that are causing the script to terminate. These could be in Apache, Nginx, FastCGI settings, or even at the system level, as previously mentioned. Make sure to check those other possible areas.

And as I’ve stated before, my expertise in server configurations is limited. These are just the options I’m aware of. Please consider consulting with a server administration expert for a more thorough diagnosis, because we are not fixing the plugin here, we are trying to fix your server.

October 29, 2023
7:52 am
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

To help diagnose the issue further, let’s run a simple PHP script that is designed to execute for 5 minutes and print a message every 30 seconds. This script contains no errors and should run without interruption if your server configuration is correct.

Here’s the code for the test:

Login to see the code

Save this script as test_execution_time.php and upload it to your server, and open your-domain.com/test_execution_time.php in your browser to run the test.

Watch for the messages on the screen. If they stop appearing before the full 5 minutes are up, it’s a strong indication that there’s a server-level issue affecting the execution time. If that’s the case, further server configuration will be needed, and it’s not something that can be resolved at the software level.

Please run this test and let me know the results.

October 30, 2023
10:19 pm
Avatar
CyberSEO
Admin
Forum Posts: 3685
Member Since:
July 2, 2009
sp_UserOfflineSmall Offline

idea I forgot to mention in my post above that you should be aware that the maximum PHP script execution time can be affected by other plugins (e.g. CyberSEO Lite, RSS Retriever and others) you might be using on your WordPress site.

In other words, if you’ve configured a specific PHP script execution time in CyberSEO Pro settings, another plugin could potentially override this setting. This could lead to unexpected behavior, such as script timeouts or incomplete tasks.

So, if you’re experiencing issues related to PHP script execution time while using CyberSEO Pro, you might want to check the settings of your other plugins. They could be the culprits.

Forum Timezone: Europe/Amsterdam

Most Users Ever Online: 541

Currently Online:
11 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

ninja321: 84

s.baryshev.aoasp: 64

Freedom: 61

MediFormatica: 49

B8europe: 47

saviulisse67: 45

Member Stats:

Guest Posters: 338

Members: 2650

Moderators: 0

Admins: 1

Forum Stats:

Groups: 1

Forums: 5

Topics: 1540

Posts: 7772

Newest Members:

nick.jtsevents, christophe.megaphone, r94alves, adammostynsmith1987, ionut.lumezanu, ndorado21

Administrators: CyberSEO: 3685