quickstart installation problem on localhost!!!

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Apr 11, 2013 10:42 pm
Reply with quote
Report this post
Hi,
I have a big problem with the quickstart installation of game news package!
Every time that i do the installation progress it stucks on the 3rd step - the installation step.
I click the button install and it gets me to the same page!!!
I dont know what to do..
I deleted the database from phpmyadmin (xampp) and all the file and i did the procedure again...! But i faced the same problem!!!!!!!!!!!!1

Do you have any solution?

Thanks in advance,

Thalia.
User avatar
Senior Boarder

GK User
Thu Apr 11, 2013 10:55 pm
Reply with quote
Report this post
I've just downloaded this package and install on MAMP (localhost) and there is no problem with the package, please look >> http://d.pr/i/OqDB It can be realted with max_allowed_packet in mySQL configuration, for more details please look here >> http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html
User avatar
Platinum Boarder

GK User
Fri Apr 12, 2013 9:28 am
Reply with quote
Report this post
bkrztuk wrote:I've just downloaded this package and install on MAMP (localhost) and there is no problem with the package, please look >> http://d.pr/i/OqDB It can be realted with max_allowed_packet in mySQL configuration, for more details please look here >> http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html



hi,
so you mean that i need to increase the variable of mysqld --max_allowed_packet?
any ideas on how to do it on xampp?
User avatar
Senior Boarder

GK User
Fri Apr 12, 2013 12:06 pm
Reply with quote
Report this post
hi,
so you mean that i need to increase the variable of mysqld --max_allowed_packet?
any ideas on how to do it on xampp?
User avatar
Senior Boarder

GK User
Fri Apr 12, 2013 2:08 pm
Reply with quote
Report this post
i have changed max_allowed_packet in mysql (xamppmysqlbinmy.cnf) first it was max_allowed_packet=1 and i changed it to max_allowed_packet=32 and then 512... but i have the same results!!

Could you help me.. please?
User avatar
Senior Boarder

GK User
Sat Apr 13, 2013 5:19 pm
Reply with quote
Report this post
what can I say? thanks a lot for your help..!
User avatar
Senior Boarder

GK User
Mon Apr 15, 2013 8:27 am
Reply with quote
Report this post
Please also change the mysql settings, the max_allowed_packet to 32M. I've installed this package 3 times on MAMP localhost and yes it takes some time on step 4 but there is no problem.
User avatar
Platinum Boarder

GK User
Mon Apr 15, 2013 9:00 pm
Reply with quote
Report this post
bkrztuk wrote:Please also change the mysql settings, the max_allowed_packet to 32M. I've installed this package 3 times on MAMP localhost and yes it takes some time on step 4 but there is no problem.



I did everything you said.... but nothing!

I also marked these:

(php_error_log)
"file:///C:/xampp/htdocs/eidisoula.gr/administrator/manifests/packages/pkg_joomla.xml" in C:\xampp\htdocs\eidisoula.gr\libraries\joomla\installer\installer.php on line 1891

"file:///C:/xampp/htdocs/eidisoula.gr/administrator/manifests/packages/pkg_joomla.xml" in C:\xampp\htdocs\eidisoula.gr\libraries\joomla\installer\installer.php on line 2100

[15-Apr-2013 13:26:20 UTC] PHP Warning: simplexml_load_file(): I/O warning : failed to load external entity

I also found this in mysql_error_log: highest supported file format is Barracuda.

At installer.php i tried to find the error on line 1891: $xml = simplexml_load_file($file);

Here is a small part of the code:
Is the XML file a valid Joomla installation manifest file.
*
* @param string $file An xmlfile path to check
*
* @return mixed A SimpleXMLElement, or null if the file failed to parse
*
* @since 11.1
*/
public function isManifest($file)
{
$xml = simplexml_load_file($file);

// If we cannot load the XML file return null
if (!$xml)
{
return null;
}

// Check for a valid XML root tag.
if ($xml->getName() != 'extension')
{
return null;
}

// Valid manifest file return the object
return $xml;
}

on line 2100:$xml = simplexml_load_file($path);
if (!$xml)
{
return false;
}

// Check for a valid XML root tag.

// Extensions use 'extension' as the root tag. Languages use 'metafile' instead


.........................................................................................................................

So?
User avatar
Senior Boarder

GK User
Tue Apr 16, 2013 8:10 am
Reply with quote
Report this post
Please give me your PHP version, mySQL version and max_allowed_packet value in mySQL configuration.
User avatar
Platinum Boarder

GK User
Tue Apr 16, 2013 1:00 pm
Reply with quote
Report this post
bkrztuk wrote:Please give me your PHP version, mySQL version and max_allowed_packet value in mySQL configuration.


Hi again,

XAMPP Version: 1.8.1
max_allowed_packet = 512M / it was max_allowed_packet = 1M and i changed / i tried with 32M/
5.5.27 - MySQL
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7

thanks for your time!
User avatar
Senior Boarder

GK User
Mon Apr 22, 2013 8:14 am
Reply with quote
Report this post
And what is you php upload_max_filesize setting ?
User avatar
Platinum Boarder

GK User
Mon Apr 22, 2013 10:05 am
Reply with quote
Report this post
bkrztuk wrote:And what is you php upload_max_filesize setting ?


Hi,
I have found this in php.ini:
Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M

Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 8M

Maximum number of files that can be uploaded via a single request
max_file_uploads = 20



?
User avatar
Senior Boarder

GK User
Mon Apr 22, 2013 1:07 pm
Reply with quote
Report this post
Thalia_1983 wrote:
bkrztuk wrote:And what is you php upload_max_filesize setting ?


Hi,
I have found this in php.ini:
Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M

Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 8M

Maximum number of files that can be uploaded via a single request
max_file_uploads = 20



?


So? what's next?............?
User avatar
Senior Boarder

GK User
Mon Apr 22, 2013 9:00 pm
Reply with quote
Report this post
Thalia_1983 wrote:
Thalia_1983 wrote:
bkrztuk wrote:And what is you php upload_max_filesize setting ?


Hi,
I have found this in php.ini:
Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M

Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 8M

Maximum number of files that can be uploaded via a single request
max_file_uploads = 20



?


So? what's next?............?


Hi,

I did some changes in the .htaccess file / and then to php.ini
php_value max_execution_time 300
php_value memory_limit 128M
php_value upload_max_filesize 12M

and i tried to do the installation again... but nothing!!!

any ideas?
User avatar
Senior Boarder

GK User
Tue Apr 23, 2013 9:48 pm
Reply with quote
Report this post
no news for me?
User avatar
Senior Boarder

GK User
Wed Apr 24, 2013 8:27 am
Reply with quote
Report this post
Please contact with me via PM and provide me access to this server. I'll try to compare server configuration with my localhost one.
User avatar
Platinum Boarder

GK User
Wed Apr 24, 2013 10:05 am
Reply with quote
Report this post
bkrztuk wrote:Please contact with me via PM and provide me access to this server. I'll try to compare server configuration with my localhost one.


Hi,

I don't have web hosting services yet.... i work only on localhost! only in xampp... and when my site will be ready i'll start web hosting!!! Then how could you have access to my xampp server? Is it possible?

Do you think we could do sth via Team Viewer?
User avatar
Senior Boarder

GK User
Thu Apr 25, 2013 8:08 am
Reply with quote
Report this post
Our moderator KonradM test this istallation on Windows localhost and it goes fine, I'll ask him to compare the server configuration with your one.
User avatar
Platinum Boarder

GK User
Thu Apr 25, 2013 8:27 am
Reply with quote
Report this post
Hi Thalia,

on my localhsot I'm using XAMPP 1.8.0 version and I have no issues with this quickstart. Please try use this version not 1.8.1 which you are using now.
User avatar
Gold Boarder

GK User
Thu Apr 25, 2013 12:52 pm
Reply with quote
Report this post
bkrztuk wrote:Our moderator KonradM test this istallation on Windows localhost and it goes fine, I'll ask him to compare the server configuration with your one.



thanks for your help...!
User avatar
Senior Boarder

GK User
Thu Apr 25, 2013 1:04 pm
Reply with quote
Report this post
Konrad M wrote:Hi Thalia,

on my localhsot I'm using XAMPP 1.8.0 version and I have no issues with this quickstart. Please try use this version not 1.8.1 which you are using now.


Hi Konrad M,

It's very strange that you said!
At xampp 1.8.1 i have already done the quickstart installation for another template from your site!!!
gk news template (gk_news_quickstart_J!30.zip) and everything went fine!!!

You know.... i am trying very hard to find the solution for game news quickstart installation!
I am searching through sql and php code to find the answer..... but nothing yet!!!!!

So, now you suggest me to uninstall this version of xampp? and try to work with my sites on xampp 1.8.0?
User avatar
Senior Boarder

GK User
Mon Apr 29, 2013 11:16 pm
Reply with quote
Report this post
Thalia_1983 wrote:
Konrad M wrote:Hi Thalia,

on my localhsot I'm using XAMPP 1.8.0 version and I have no issues with this quickstart. Please try use this version not 1.8.1 which you are using now.


Hi Konrad M,

It's very strange that you said!
At xampp 1.8.1 i have already done the quickstart installation for another template from your site!!!
gk news template (gk_news_quickstart_J!30.zip) and everything went fine!!!

You know.... i am trying very hard to find the solution for game news quickstart installation!
I am searching through sql and php code to find the answer..... but nothing yet!!!!!

So, now you suggest me to uninstall this version of xampp? and try to work with my sites on xampp 1.8.0?


Hi again,
Well, i did what you said but still the same problem!!!
You probably do something different....! i can't explain this.... you must have changed sth on settings of your localhost... that i haven't! I don't know!
rather I will quit this template!!!! I got tired!!!!!!! It should be easy like with the other templates!!!

thanks for your help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
User avatar
Senior Boarder

GK User
Thu May 02, 2013 5:07 pm
Reply with quote
Report this post
The only differences between versions can be Joomla! version but what is more interesting is the fact that I can install on MAMP without any problems.
User avatar
Platinum Boarder

GK User
Fri May 03, 2013 3:27 pm
Reply with quote
Report this post
bkrztuk wrote:The only differences between versions can be Joomla! version but what is more interesting is the fact that I can install on MAMP without any problems.


I know you're right..... but I can not find what's wrong!
too bad because I really liked this template...!
Now i'll see what i'll do!!!!
User avatar
Senior Boarder


cron