- Posts: 13
 - Thank you received: 6
 
Xampp Server Issue
            
        
                3 months 1 week ago                #29
        by naseem
    
    
            
            
            
            
            
                                
    
                                                
    
        Xampp Server Issue was created by naseem            
    
        How to increase maximum execution time ?
How to post Max upload size?
How to inscrease upload file size?
C:\xampp\php\php.ini
[code} 701 ini_set('post_max_size', '64M'); [/code]
____________________________________________
How to change Apache port? 80
C:\xampp\apache\conf\httpd.conf
2) C:\xampp/mysql\bin\my.ini
3) xampp/php/php.ini
________________________________________
To listen or kill port issue, open CMD
netstat -ano | findstr :3306
taskkill /PID 5600
     
    How to post Max upload size?
How to inscrease upload file size?
C:\xampp\php\php.ini
- Find file name: php.ini
 
Code:
407 ini_set('max_execution_time', 30); 
Code:
853 ini_set('upload_max_filesize', '64M');
Code:
931 extension=gd
____________________________________________
How to change Apache port? 80
C:\xampp\apache\conf\httpd.conf
- Find file name httpd.conf
 
Code:
60 Listen 80 [/code}
___________________________________________
[b]How to change MySQL port? [/b]
[color=#d35400] 1)  C:\xampp\properties.ini[/color]
[list]
[*]Find file name:[color=#16a085] properties.ini[/color]
[/list]
[code] 22   mysql_arguments=-u root -P 3306
2) C:\xampp/mysql\bin\my.ini
- Find file name: my.ini
 
Code:
18 [client] 
Code:
19 # password       = your_password 
Code:
20 port=3306
Code:
28 [mysqld]
Code:
29 port=3306
3) xampp/php/php.ini
- Find file php.ini
 
Code:
1199 mysqli.default_port=3306
Code:
2003 mysql.default_port=3306
To listen or kill port issue, open CMD
netstat -ano | findstr :3306
taskkill /PID 5600
Please Log in or Create an account to join the conversation.
        Time to create page: 0.360 seconds