I'm happy to say that it's a wonderfull app. you have made. Joomla 1.7 Form V4
But after creating forms on local server, I wanted to place it on my external server. But when I created a table from Form Manager I got this error:
"Error 403: Forbidden
Your PHP settings have been disabled by an H-Sphere administrator.
Your current PHP configuration:
This configuration was changed: Mon Nov 28 02:00:14 UTC 2011
Please bring your PHP configuration in compliance with admin settings or request your administrator to re-enable support of your settings".
If I run this PHP:
<?php
// Make a MySQL Connection
mysql_connect("xxx.xx.dk", "xx_x", "xxxxx") or die(mysql_error());
mysql_select_db("nordics_Shop") or die(mysql_error());
mysql_query("CREATE TABLE example(
id INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id),
name VARCHAR(30),
age INT)")
or die(mysql_error());
echo "Table Created!";
?>
It works perfectly
Hope you can help me.
Best regards Per B
But after creating forms on local server, I wanted to place it on my external server. But when I created a table from Form Manager I got this error:
"Error 403: Forbidden
Your PHP settings have been disabled by an H-Sphere administrator.
Your current PHP configuration:
This configuration was changed: Mon Nov 28 02:00:14 UTC 2011
Please bring your PHP configuration in compliance with admin settings or request your administrator to re-enable support of your settings".
If I run this PHP:
<?php
// Make a MySQL Connection
mysql_connect("xxx.xx.dk", "xx_x", "xxxxx") or die(mysql_error());
mysql_select_db("nordics_Shop") or die(mysql_error());
mysql_query("CREATE TABLE example(
id INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id),
name VARCHAR(30),
age INT)")
or die(mysql_error());
echo "Table Created!";
?>
It works perfectly
Hope you can help me.
Best regards Per B