Since many people encounter problems during installation and use, I still have to summarize it. If it still can’t be solved, you can join the group and ask questions to the omnipotent group friends.
Verification code is not displayed
- Check whether the server supports the GD graphics processing library
- Check the server WEB environment
- Apache: If your program is installed in a secondary directory, modify the .htaccess file in the program root directory
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f Rewritebase/your secondary directory name/index.php RewriteRule ^(.*)$ /Your secondary directory name/index.php?/$1 [L]
- Nginx: Find the configuration file nginx-conf, modify and add the following content in the location/ section
try_files $uri $uri/ /index.php?$query_string;
or this
if (!-d $request_filename){ set $rule_0 1$rule_0; } if (!-f $request_filename){ set $rule_0 2$rule_0; } if ($rule_0 = “21”){ rewrite ^/(.*)$ /index.php?/$1 last; }
- IIS pseudo-static is the same as Apache
- Pagoda panel uses ready-made thinkPHP pseudo-static
Email sending failed
- First determine whether your port 25 is blocked. If it is blocked, try to ask the host provider to enable it (if not, change the server)
- Turn off registration verification or wait for the next version update (note: changing the port is useless, port 465 requires SSL support)
Data interface exception
- Pseudo-static redirection failed, please refer to the above settings to make settings again.
- If it is an nginx server, find the path /framework/core/Framework.php and comment or delete lines 51 to 53. The specific code is as follows (generally Apache servers will not encounter this problem, only nginx servers will)
if ($path != ‘’) { $path = strstr(trim($_SERVER[‘REQUEST_URI’],’/’),$path); }
Failed to upload image
Upload failure prompt: There was a slight hiccup during the upload. Please open the controller to check the reason!
- Check whether the Sina account password is correct
- Manually log in to the web version of Sina Weibo once
- Does your Sina account have permission to post on Weibo?
- After successful configuration, you are not allowed to log in to any Sina platform (it is recommended to use a small account)
- Go here to buy a Sina account Mengyin Card
Upload image size
In addition to Sina restrictions, uploading images also depends on server configuration
- Maximum upload limit (upload_max_filesize)
- Maximum number of files allowed to be uploaded (max_file_uploads)
- Maximum script execution time (max_execution_time)
- The maximum memory consumption of the script (memory_limit)
- Maximum script parsing time (max_input_time)
Please try to modify the above configuration information to solve the problem
Verification code error
Description: It is clear that the image verification code entered for login is correct, but it keeps prompting that the verification code is wrong.
- Check whether the ESSINON directory exists in the php.ini configuration
- If it does not exist, create a new directory. If it exists, check the read and write permissions.
The configuration file cannot be saved
- Check whether the program directory has read and write permissions
To be added…
More bugs are waiting for your feedback (laughs) Fantasy field picture exchange and feedback group: 833715085