Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<?php phpinfo(); ?>
Upload and navigate to that page and it will list out all of the variables as well as all of the additional libraries installed with your PHP installation. Do a search on the page for the variables I mentioned above and it should tell you what the settings are.
Configuration File (php.ini) Path /etc/php5This looks like there is a system php.ini file at /etc/php5 (which you probably cannot get to), but it also looks like there is a local php.ini file located at /customers/boraskungfu.com/boraskungfu.com/config/php5.ini which should be accessible to you. Download that file, open it in a text editor, and see if any of the variables I mentioned above are within that file. If so, we can edit them. If not, we can add them.
Loaded Configuration File /customers/boraskungfu.com/boraskungfu.com/config/php5.ini
<?php
echo "upload_max_filesize = ".ini_get('upload_max_filesize')."<br/>\n";
echo "max_execution_time = ".ini_get('max_execution_time')."<br/>\n";
echo "memory_limit = ".ini_get('memory_limit')."<br/>\n";
?>
Posted By: MonsterkidFirst of all, Thx!No problem! :D
Posted By: Monsterkidsecond. I cant get to any php config files.. :(When you log in to your account via FTP, is there a folder called "/config/" at or above the level where you upload your website photos? I think that's where the php5.ini file lives on your server.
Posted By: MonsterkidBut are you saying that if i remove all the current plogger files on my server now and upload the latest SVN insted, it may work fine?Well . . . before, even with updating the PHP variables, most likely it would not have worked for you. If you install the newest one, you will be able to get it to work (although without changing the variables, you may still be limited on filesize, etc.). I would start over and re-run the _install.php file from the new SVN trunk download (it *should* work so it doesn't save over any of your MySQL tables). That way it will ask for your FTP information since safe_mode is enabled.
php_value upload_max_filesize 16M
php_value max_execution_time 300
php_value memory_limit 64M
Make sure they are on separate lines and have a space after them (in case another script writes additional information to your .htaccess file).1 to 9 of 9