Online deposit web server "jyraphe"
Solved
Franqui34
Posted messages
139
Status
Membre
-
Franqui34 Posted messages 139 Status Membre -
Franqui34 Posted messages 139 Status Membre -
Hello,
I am very new to Linux and I hope you'll be patient with me.
I installed Debian 7, then I quickly set up a LAMP server on which I placed my website. I can access my site locally and externally via the fixed IP address of my router.
My goal is to have a web server for file uploads. I installed Jyraphe, which works very well locally, but I cannot upload a file externally.
Externally, I can access Jyraphe, but when I try to upload a file, it hangs and gives me the error message: "response time limit exceeded."
I increased the "max_execution_time" to 90 and "max_input_time" to 90 in the php.ini file, but it doesn't change anything.
If it helps, when I try to upload a file, I see it trying to connect to my server's local IP. Is that normal?
Additionally, if it can help you, I can access my website folders via FTP using Filezilla, but I cannot access them externally.
A little help would be greatly appreciated. (I remind you that I’m new to Linux after several decades on Windows).
Have a good day and thank you to anyone who can help me out of this deadlock.
I am very new to Linux and I hope you'll be patient with me.
I installed Debian 7, then I quickly set up a LAMP server on which I placed my website. I can access my site locally and externally via the fixed IP address of my router.
My goal is to have a web server for file uploads. I installed Jyraphe, which works very well locally, but I cannot upload a file externally.
Externally, I can access Jyraphe, but when I try to upload a file, it hangs and gives me the error message: "response time limit exceeded."
I increased the "max_execution_time" to 90 and "max_input_time" to 90 in the php.ini file, but it doesn't change anything.
If it helps, when I try to upload a file, I see it trying to connect to my server's local IP. Is that normal?
Additionally, if it can help you, I can access my website folders via FTP using Filezilla, but I cannot access them externally.
A little help would be greatly appreciated. (I remind you that I’m new to Linux after several decades on Windows).
Have a good day and thank you to anyone who can help me out of this deadlock.
3 réponses
It's probably a parameter to adjust in your apache configuration, and I believe this error is not specific to Jyraphe, but more related to apache/php themselves (I think I've encountered it before with Joomla, notably).
You can look into this kind of thing:
https://stackoverflow.com/questions/8744107/increase-max-execution-time-in-php
Once that's done, restart your apache server so that the changes take effect, as root:
Good luck
You can look into this kind of thing:
https://stackoverflow.com/questions/8744107/increase-max-execution-time-in-php
Once that's done, restart your apache server so that the changes take effect, as root:
service apache2 restart
Good luck
Hello,
First of all, thank you because I haven't often had the chance to meet Jyraphe. I've never tested it.
But in the same field, I don't know if you know owncloud.
https://owncloud.com/ It's software for online file storage, sharing, and various applications. It is a competitor to Dropbox and completely open-source.
As for "max_execution_time," you can easily find it in your php.ini.
It seems to me from memory /etc/php5/apache2/php.ini
Once the value is changed, don't forget to restart Apache (restart)
sudo service apache2 restart
or
su service apache2 restart
First of all, thank you because I haven't often had the chance to meet Jyraphe. I've never tested it.
But in the same field, I don't know if you know owncloud.
https://owncloud.com/ It's software for online file storage, sharing, and various applications. It is a competitor to Dropbox and completely open-source.
As for "max_execution_time," you can easily find it in your php.ini.
It seems to me from memory /etc/php5/apache2/php.ini
Once the value is changed, don't forget to restart Apache (restart)
sudo service apache2 restart
or
su service apache2 restart
Hello,
Thank you for your responses. In fact, I solved my problem by configuring the php.local.conf file.
Currently, Jyraphe is working very well.
For Postenebra:
As you said, Owncloud is a software for file storage and sharing services, as well as various online applications, but it does not provide a link to retrieve the stored file.
My goal was more focused on uploading .txt files and precisely retrieving the link to read the uploaded .txt file.
Thank you both anyway, and happy Easter holidays.
Thank you for your responses. In fact, I solved my problem by configuring the php.local.conf file.
Currently, Jyraphe is working very well.
For Postenebra:
As you said, Owncloud is a software for file storage and sharing services, as well as various online applications, but it does not provide a link to retrieve the stored file.
My goal was more focused on uploading .txt files and precisely retrieving the link to read the uploaded .txt file.
Thank you both anyway, and happy Easter holidays.