After Joomla update from 3.5.1. to 3.6.0 I get the following error: JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE - php

When I Update my current Joomla from 3.5.1 to 3.6.0 the update process starts as expected. But at the end the browser switches to a blank white site. Afterwards when i call the admininstration or the frontend i get following error message: JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE
Anybody able to help me with this? When i check the apache error.log, nothing is shown.
Thanks in advance
René

The only solution i found right now is the following:
I restored a backup of the entire site with the data of yesterday.
Then I entered the administration panel
Switched to configuration and server and disabled the FTP-Layer (which was enabled before)
Now i called the component "Joomla Update"
I started the installation process für 3.6.0
The system finished the process wihtouht problems
So my opinion is to be very careffully with the update when the ftp-layer is switched on.

Related

Problem with Symfony 5 in prod but not dev

I have a problem with my project in symfony 5.4 (recently update from 4.4)
I deploy my project on the prod server (on a subdomain) and he don't work in prod environnement, but work in dev.
I already :
_ fix permissions for /var folder
_ set up vhosts (i'm on plesk so i put directives in vhost.conf, in my subdomain)
_ install and update composer
The problem is that there is a lot of missing image (it's ok they are on prod), when i run the project in dev, missing image return a 404 error, but when i turn symfony on prod, missing image return a 500 error, and then the all site is on error 500 untill i clear symfony cache.
I have the previous verison (the 4.4 one), who run in the principal domain, and i dont have this problem.
I deploy the exact same project (the new one in 5.4), in an others test server, and he works in dev and prod (no error 500 on image).
I think it's a server problem, but i passed 4 days on this, i tried a lot of thing, and i'm still stuck :)
First, thank you for trying to help me, i appreciate that.
So.
For removing the error with the image (error 500 instead 404), it appears that the problem was coming from my error templates 'bundles/TwigBundles/error.html.twig', i removed all the code and try just a simple tag, clear the cache and then the missing images trhow a 404 error.
I also reinstall composer require symfony/twig-pack
This helped me : https://stackoverflow.com/a/13741553/20040268
So the site was running fast this time, but as soon i changed page, error 500 again...at least it was fast ^^
So i keep digging, and like #user1915746 said, i started searching with php and the error code i send : mod_fcgid: error reading data from FastCGI server.
I tried a lot of thing for removing this error like :
https://stackoverflow.com/a/12192622/20040268
But still not resolved my problem.
Finally i decided to change the all php ^^ I was in 7.4.30, i pass in php 8.0.20 and...voila...no more error 500...
If you guys have the same thing, and tried all i tried, change php version or if you can't try to see if you don't have missing package (like php-cgi).
Thank you again for your time!

Prestashop 1.7 Transplant a Module Page Temporarily Unavailable Error

I recently started experiencing a strange error every single time I try to visit the transplant a module page. From the design > positions page3 I click on the "transplant a module" button on the top right and it takes a really long time to load, but then it does not load at all. I get a blank page with the following error:
The page you are looking for is temporarily unavailable.
Please try again later.
5cb0af3eb5bd6096ecb4dce014d6635a 3a1c22abc23c754c0fb7be3b7c58431e 159cf03490b9d26b556696ed897a7daa
I contacted my server provider and they explained to me that the server I was using was reaching the max amount of files allocated, and that I needed to get a new server just for this particular site. So I did. I then cloned the site and database and brought it over to the new server....but I'm still getting this error everytime I try to transplant a module.
Any one ever encountered this issue? Any one have any ideas as to what could be causing this? Any suggestions on what I can do to troubleshoot this error further?
I have turned on debug mode, and it does not give any more information than what's above.
Thank you all,
Maybe you are facing the following known bug. It will be fixed in 1.7.5 (coming soon)
https://github.com/PrestaShop/PrestaShop/issues/10811
Sometimes module have some issues, I've a problem one day and this help me :
In config/xml copy the 2 files "must_have_modules_list.xml" and "default_country_modules_list.xml" on your PC in case,
And then delete the two files from your site,
This "refresh" the cache of your module config
Hope will help you
The "Transplant a module" page is now working after I changed the file AdminModulesPositionsController.php in /root/controllers/admin folder.
In line 449 changed:
$all_modules_controllers = Dispatcher::getModuleControllers($type);
to
$all_modules_controllers = Dispatcher::getControllers($type);
Try this, it's working for me.

Magento error 404: page not found on admin after upgrade to 1.9

I've tried all solutions available online to this issue. Nothing worked and still getting a 404 error every time I login to my admin panel!
This issue has been occurring ever since I performed an upgrade for my site to 1.9.1.0 version of Magento.
here is a screenshot of the error: http://awesomescreenshot.com/0af3wfxfcb
What other information will you need to help me solve this issue?
Thanks for your assistance
I guess you must have tried logging out after the upgrade, but just in case.
Try to go to phpmyadmin and disable secure backend and "Use Web Server Rewrites"
Hope this helps.
Try this SQL query:
SET SQL_SAFE_UPDATES=0;
SET FOREIGN_KEY_CHECKS=0;
UPDATE `core_store` SET store_id = 0 WHERE code='admin';
UPDATE `core_store_group` SET group_id = 0 WHERE name='Default';
UPDATE `core_website` SET website_id = 0 WHERE code='admin';
UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';
SET FOREIGN_KEY_CHECKS=1;
SET SQL_SAFE_UPDATES=1;
This problem often happens when you have upgraded your Magento store to new versions or installing security patches, even when you migrate/move your store to another server then your store was going down with 404 error – page not found on the frontend (maybe the same error is displayed in admin panel page also). This problem often cause by Magento cache is crashed/corrupted or something is conflicting when implement security patches (new code is applied). Or there was some incorrect entries, tables in database is missing when upgrading/moving your store.
For identifying exactly what’s the problem you can log in to FTP Client program (eg: Filezilla…) or server with File Manager and go to location /var/report and /var/log of Magento store files where its located (root directory) then checking error logs files (this may help resolve your problem also).
You can try the following solutions below to fixing it (via OIW blog):
Clear Magento cache/session (even your browser also)
Reset data of some tables, comparing them with original DB
Check your Database if default store isn't active
Check if it's Mage::log() error (Magento version 1.9.3+)
I hope this will help !

OsTicket Blank Page after install (no data received)

I am trying to install osticket to my server (PHP 5.3, MYsql >5.0).
After I upload the 'upload' directory to my server, I go to mydomain.com/osticket and am taken to the install page. I fill out the form, and if I get no validation errors in the form, the page submits.
However, then I get an error (No data received in chrome) and if I refresh the page I am taking back to install.php to fill the form out again.
I should note that the app created tables in the database I gave it. I also enabled errors in bootstrap.php and I saw no errors there or in the error logs. I tried v 1.9.0 and 1.8.3.
Thank you!
Please change "max_execution_time=30" to "max_execution_time=120" in php.ini file
Increase the "MAX_EXECUTION_TIME" in the PHP.ini file of your web server installation.
I had the same problem and managed to resolve changing it from 30 to 180.
Yes it works after changing max_execution_time from 30 to 120

Help: Wordpress admin error, not able to login

After updating wordpress to 3.1 my site stopped functioning. There was some functionality in the admin section of the site, but the site would blank out on random pages after setting changes. The front end of the site is somewhat functional. It would only seem to work when I have a maintenance plugin active, otherwise it blank out.
I finally got the site to work by using a backup version of my site before the update, but when I went into the admin section I got a "Database Update" message so thats what I did (I guess it's a new feature for 3.1). I updated the database, but after putting in my username and password in the admin login screen, I get the following error:
Fatal error: Call to undefined function get_blogs_of_user() in /home/content/html/drtv/wp-includes/class-wp-admin-bar.php on line 18
Im pretty sure this has something to do with traces of the 3.1 version in the database, as the class-wp-admin-bar.php is being called.
Thanks for any help on this issue. This is a day long problem that is completely wrecking my brain. The bad part about it is that I need to put the site in maintenance mode because of some site errors and Im not able to because I can't get into the admin.
Here is the link to the site: HERE
Thanks a lot.
Put your custom wp-config.php code before this:
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');

Categories