Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. spavkov

    XML Membership Provider available?

    or even a more complete example: http://www.codeplex.com/Wiki/View.aspx?ProjectName=XmlProviderLibrary it has membership, roles, profile, and personalization implemented to save all data to xml. :)
  2. spavkov

    XML Membership Provider available?

    Hello, this should help: http://blog.madskristensen.dk/post/XML-membership-provider-for-ASPNET-20.aspx you have info and download of the source code. Good luck, Slobo
  3. spavkov

    file_get_content works but include() and require dont work

    it was the problem in the server apache and php installation... hosting company rebuilt the apache and php and all started to work... thanks to all guys who tried to help...
  4. spavkov

    file_get_content works but include() and require dont work

    >>config.php:<< <?php set_time_limit(0); ignore_user_abort(true); // // config.php // class cfg_class { var $DEBUG; var $LOCAL; var $appname; var $dirroot; var $approot; var $includedir; var $uploadsdir; var $projectsdir; var $mprojectsdir...
  5. spavkov

    file_get_content works but include() and require dont work

    error reporting is switched on and set to error_reporting(E_ALL); i tried these scripts on another server that has the same version of php and all works fine... im 100% sure its PHP or APACHE configuration problem... just cannot figure out what it is... thanks, Slobo
  6. spavkov

    file_get_content works but include() and require dont work

    i dont do anything with value in $a after the $a=file_get_contents("/home/someuser/public_html/sb/config.php"); i just did this to see if its working... and it does... config.php is just a script with one configuration class that has all the configration data for my application... but this...
  7. spavkov

    file_get_content works but include() and require dont work

    one more thing: i tried: require_once("config.php"); and it works! but when i try: require_once("/home/someuser/public_html/sb/config.php"); it fails! and im 100% sure that "/home/someuser/public_html/sb/" is the right path... its not problem there... im sure its in the way how Apache or...
  8. spavkov

    file_get_content works but include() and require dont work

    Yes, this code is executed first before everything else, even before <html> tag. why?
  9. spavkov

    file_get_content works but include() and require dont work

    Hi Guys, im puzzled: i need to install one php4 application on php 4.4.1 server (running as Apache 1.3.34 module) my doc root is this: ["DOCUMENT_ROOT"]=> "/home/someuser/public_html" and my app is in the document root in subdir /sb/ so it is in "/home/someuser/public_html/sb/" in script...
  10. spavkov

    How to create subdomain for every subdir in docroot (with htaccess) ?

    Thank you MrBrooks for all your help... here is the code that worked 100% for me (based on your code) Options +FollowSymlinks RewriteEngine on RewriteCond %{http_host} . RewriteCond %{http_host} !^www.mysite.com [NC] RewriteCond %{http_host} ^([^.]+)\.mysite.com [NC] RewriteRule ^(.*)...
  11. spavkov

    How to create subdomain for every subdir in docroot (with htaccess) ?

    Hi MrBrooks. i tried your solution and its not working... But it looks that the problem is not in the contents of the .htaccess file. i turned on the wildcards dns feature of the server and whatever subdomain i enter i get this message: This is the Plesk™ default page If you see this page it...
  12. spavkov

    How to create subdomain for every subdir in docroot (with htaccess) ?

    Apache 2.0 php 4.3.10 mod_rewrite is available!!!
  13. spavkov

    How to create subdomain for every subdir in docroot (with htaccess) ?

    Hi M. Brooks! thanks for your answer but this is not what i want... i need this to be done via .htaccess file or by editing the Apache config files, but this has to work for ALL possible solutions of the user entered subdomains, so it must use ModRewrite engine of Apache... so if user enters...
  14. spavkov

    How to create subdomain for every subdir in docroot (with htaccess) ?

    Hi you all! i have a very important problem i want to solve so please help: i would like to create a single .htaccess file for my Apache server (GoDaddy hosting linux server) that will allow me a subdomains for every subdir on my server's root: for example: if my i have a server...
  15. spavkov

    Creating/filling/printing active forms (like Acrobat Reader forms)

    Hi! Anybody has experience with creating a delphi program that would allow users to create (design) active forms on virtual sheet of paper (for example A4) with lines, text, edit fields and then these virtual forms could be filled with actual data and printed on real forms.. (print preview is...
  16. spavkov

    Problems with MSSQL SERVER 2000 after few days of normal work

    Client computers modify data thru applications written in Delphi 7 that use Delphi generic VCL ADO components: 1. AdoConnection 2. AdoQuery 3. AdoTable some of the applications use transactions to modify the tables... but mostly only normal queries are used (select, update, insert). there are...
  17. spavkov

    Using Curl to get specific information returned

    Hi here is the code (a little spagetti code, but it works). it shows the our title text and first 5 results without any other data... hope its what you wanted... you can easily customize it more... just check the code and the comments, its pretty simple stuff... <?PHP // use this so we dont...
  18. spavkov

    Problems with MSSQL SERVER 2000 after few days of normal work

    Ok, i checked, and it looks this was not a problem... here is my check: i ran this query : exec sp_who2 and it showed 98 connections active. i started on app, ran some db tasks, and rad exex sp_who2 and it showed 99 connections active. i stopped the app and sp_who2 showed 98 connections...
  19. spavkov

    Problems with MSSQL SERVER 2000 after few days of normal work

    Thank alot for quick answer... this forum (and people involved) is really something... i will see if this helps and let you know.... Regards Slobo
  20. spavkov

    Using Curl to get specific information returned

    Hi here is you code, little changed so it works now... .......... <?PHP // use this so we dont get php timeout after 30 secs set_time_limit(0); ignore_user_abort(true); $hostname = 'http://inventory.overture.com/d/searchinventory/suggestion/?term='; $domainc = 'www.yahoo.com'; $curl_handle...

Part and Inventory Search

Back
Top